mirror of
https://github.com/HandmadeMath/HandmadeMath.git
synced 2026-01-03 18:22:27 +00:00
14 lines
154 B
Batchfile
14 lines
154 B
Batchfile
@echo off
|
|
|
|
IF NOT EXIST build mkdir build
|
|
|
|
pushd build
|
|
|
|
REM C Build
|
|
cl -nologo -FC -Z7 -Tc ..\main.c
|
|
|
|
REM C++ Build
|
|
cl -nologo -FC -Z7 ..\main.cpp
|
|
|
|
popd
|