1
0
mirror of https://gitlab.com/rnger/amath synced 2025-10-05 10:29:29 +00:00

ARexx support

This commit is contained in:
2021-01-11 20:33:26 +01:00
parent 3a52c27a9c
commit 6eb56b056e
6 changed files with 325 additions and 11 deletions

19
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
"configurations": [
{
"name": "amiga",
"includePath": [
"/opt/amiga/m68k-amigaos/ndk-include/",
"/opt/amiga/m68k-amigaos/clib2/include/",
"${workspaceFolder}/src/lib/"
],
"defines": ["AMIGA"],
"compilerPath": "/opt/amiga/bin/m68k-amigaos-gcc",
"cStandard": "c99",
"cppStandard": "c++98",
"intelliSenseMode": "${default}",
"compilerArgs": []
}
],
"version": 4
}