16 lines
151 B
Batchfile
16 lines
151 B
Batchfile
|
@echo off
|
||
|
|
||
|
REM: Path setup
|
||
|
|
||
|
SET src=%cd%
|
||
|
cd ..
|
||
|
if not exist "build\" mkdir build
|
||
|
cd build
|
||
|
|
||
|
|
||
|
|
||
|
REM: Build
|
||
|
cl /nologo /GL /O2 %src%\win32_before_main.c
|
||
|
|
||
|
|