mirror of
https://github.com/HandmadeMath/HandmadeMath.git
synced 2025-12-28 15:44:33 +00:00
14 lines
153 B
Batchfile
14 lines
153 B
Batchfile
@echo off
|
|
|
|
IF NOT EXIST build mkdir build
|
|
|
|
pushd build
|
|
|
|
REM C Build
|
|
cl -FC -nologo -Z7 -Tc ../main.c
|
|
|
|
REM C++ Build
|
|
REM cl -nologo -Zi ../main.cpp
|
|
|
|
popd
|