server/createprojects.bat
cipherCOM a81cf28610 [11167] Added CMake support
(based on cipherCOM's commit 0039476)

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
2011-02-14 12:56:50 +03:00

15 lines
No EOL
144 B
Batchfile
Executable file

@ECHO off
mkdir build
cd build
if %1!==! goto without
cmake .. -G %1
if errorlevel 1 call cmake --help
goto end
:without
cmake ..
:end
cd ..