Fixed the "with editor" build setting in cmconfig.bat
Debug GUI windows can no longer be collapsedGui_Panel_Refactor
parent
5f56810e00
commit
5bd27e5f15
@ -1,10 +1,12 @@
|
||||
@echo off
|
||||
REM This script expects to be run from the parent directory
|
||||
REM ex. scripts/cmconfig.bat
|
||||
@echo on
|
||||
@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 (
|
||||
cmake -Wno-dev -DGLFW_BUILD_DOCS=OFF -B build/ -S . -G "Visual Studio 16 2019" -A x64
|
||||
echo "WITH EDITOR"
|
||||
cmake -Wno-dev -DNO_EDITOR=OFF -DGLFW_BUILD_DOCS=OFF -B build/ -S . -G "Visual Studio 16 2019" -A x64
|
||||
)
|
||||
Loading…
Reference in New Issue