16 lines
475 B
Batchfile
16 lines
475 B
Batchfile
@echo off
|
|
|
|
pushd %~dp0
|
|
rem cl main.cpp -I.. user32.lib
|
|
clang core_main.cpp -O0 -Wall -Wno-unused-function -fno-exceptions -fdiagnostics-absolute-paths -g -o main.exe -Wl,user32.lib
|
|
rem ubuntu run clang core_main.cpp -O0 -Wall -Wno-unused-function -fno-exceptions -fdiagnostics-absolute-paths -g -o core.out
|
|
|
|
rem clang test.cpp
|
|
|
|
rem main.exe -testing
|
|
rem echo Building arms race
|
|
rem call examples/arms_race/build_arms_race.bat
|
|
rem main examples/arms_race/arms_race.core
|
|
|
|
popd
|