15 lines
160 B
Batchfile
15 lines
160 B
Batchfile
|
@echo off
|
||
|
|
||
|
REM: Path setup
|
||
|
|
||
|
cd ..\win32_before_main
|
||
|
SET src=%cd%
|
||
|
cd ..
|
||
|
if not exist "build\" mkdir build
|
||
|
cd build
|
||
|
|
||
|
|
||
|
|
||
|
REM: Build
|
||
|
clang %src%\win32_before_main.c
|