You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
388 B
Batchfile
12 lines
388 B
Batchfile
@echo off
|
|
REM This script expects to be run from the parent directory
|
|
REM ex. scripts/cmconfig.bat
|
|
@echo off
|
|
|
|
IF "%~1" == "noedit" (
|
|
echo "no editor build"
|
|
cmake -Wno-dev -DNO_EDITOR=ON -DGLFW_BUILD_DOCS=OFF -B build/ -S . -G "Visual Studio 16 2019" -A x64
|
|
) ELSE (
|
|
echo "WITH EDITOR"
|
|
cmake -Wno-dev -DNO_EDITOR=OFF -DGLFW_BUILD_DOCS=OFF -B build/ -S . -G "Visual Studio 16 2019" -A x64
|
|
) |