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.
lunarium_OLD/scripts/cmconfig.bat

10 lines
329 B
Batchfile

@echo off
REM This script expects to be run from the parent directory
REM ex. scripts/cmconfig.bat
@echo on
IF "%~1" == "noedit" (
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
)