Desurium/build_desura.bat

7 lines
129 B
Batchfile

IF NOT EXIST build (
mkdir build
)
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=../install -G "NMake Makefiles"
nmake install
cd ..