10 lines
219 B
Batchfile
10 lines
219 B
Batchfile
@echo off
|
|
call ../misc/compile_setup.bat
|
|
|
|
mkdir build
|
|
cd build
|
|
cl -Fe:bld.exe ../code/build_main.cpp -WX -W3 -wd4200 -diagnostics:column -nologo -Zi -D_CRT_SECURE_NO_WARNINGS /MD
|
|
cd ..
|
|
build\bld.exe asd=Memes
|
|
|