mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
(based on cipherCOM's commit 0039476) Signed-off-by: VladimirMangos <vladimir@getmangos.com>
15 lines
No EOL
144 B
Batchfile
Executable file
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 .. |