build_testbed_lib.bat 483 B

12345678
  1. REM Builds only the testbed library
  2. SET INC_CORE_RT=-Ikohi.core\src -Ikohi.runtime\src
  3. SET LNK_CORE_RT=-lkohi.core -lkohi.runtime
  4. REM Testbed lib
  5. make -f "Makefile.library.mak" %ACTION% TARGET=%TARGET% ASSEMBLY=testbed.klib DO_VERSION=%DO_VERSION% ADDL_INC_FLAGS="%INC_CORE_RT% -Ikohi.plugin.ui.standard\src -Ikohi.plugin.audio.openal\src" ADDL_LINK_FLAGS="%LNK_CORE_RT% -lkohi.plugin.ui.standard -lkohi.plugin.audio.openal"
  6. IF %ERRORLEVEL% NEQ 0 (echo Error:%ERRORLEVEL% && exit)