cmangos-tbc/createprojects.bat
cipherCOM 332a7ba56d [s0826] Added CMake support
(based on cipherCOM's commit 0039476)

Signed-off-by: VladimirMangos <vladimir@getmangos.com>

(based on commit 33fd34a)
(based on commit 9790bcd)
2011-02-17 14:05:34 +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 ..