8 lines
312 B
Batchfile
8 lines
312 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
|
|
popd
|