Desurium/build_desura.bat

7 lines
129 B
Batchfile
Raw Normal View History

2012-03-16 10:14:50 -07:00
IF NOT EXIST build (
mkdir build
)
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=../install -G "NMake Makefiles"
2013-08-16 12:13:25 -07:00
nmake install
cd ..