9 lines
86 B
Batchfile
9 lines
86 B
Batchfile
![]() |
@echo off
|
||
|
rmdir /S /Q build
|
||
|
mkdir build
|
||
|
|
||
|
pushd build
|
||
|
|
||
|
cl ../main.cpp /Zi
|
||
|
|
||
|
popd
|