iigs-game-engine/demos/danmalec/package.json
Dan Malec b7024c8063 Consolidated GTE header files accounting for both possible tool locations.
* Introduced GTE_IS_SYSTEM_TOOLS_INSTALL as a toggle for the two locations.
* gte.h now routes calls based on the toggle.
* LoadGTEToolSet can now handle either location based on the toggle.
* Removed main.h and main.r as tool loading is now done explicitly.
2022-07-28 22:40:06 -04:00

22 lines
941 B
JSON

{
"name": "dan-malec-c-demo",
"version": "1.0.0",
"description": "Using GTE from C",
"main": "index.js",
"config": {
"merlin32": "C:\\Programs\\IIgsXDev\\bin\\Merlin32-1.1.10.exe",
"cadius": "C:\\Programs\\IIgsXDev\\bin\\Cadius.exe",
"gsport": "C:\\Programs\\gsport\\gsport_0.31\\GSPort.exe",
"macros": "../../macros",
"crossrunner": "C:\\Programs\\Crossrunner\\Crossrunner.exe"
},
"scripts": {
"gsport": "%npm_package_config_gsport%",
"test": "npm run build && build-image.bat %npm_package_config_cadius% && %npm_package_config_gsport%",
"build": "npm run build:tool && npm run build:sys16",
"build:sys16": "iix compile demo_data.c gte.c main.c && iix -DKeepType=S16 link main demo_data gte keep=App",
"build:tool": "%npm_package_config_merlin32% -V %npm_package_config_macros% ../../src/Master.s",
"debug": "%npm_package_config_crossrunner% ./App -Debug -CompatibilityLayer"
}
}