1
0

Build Changes

This commit is contained in:
Scott E. Graves
2017-03-17 09:41:16 -05:00
parent c042296f80
commit cc6780678b
3 changed files with 11 additions and 6 deletions

View File

@@ -96,5 +96,6 @@ if (MSVC OR MINGW)
endif() endif()
endif() endif()
#Common Configuration Post-setup #Common Configuration Post-setup
include_directories(${3RD_PARTY_INCLUDES} ${COMMON_INCLUDES}) include_directories(${3RD_PARTY_INCLUDES} ${COMMON_INCLUDES})

View File

@@ -1,10 +1,12 @@
@echo off @echo off
pushd "%~dp0%"
mkdir build mkdir build
mkdir build\debug mkdir build\debug
pushd build\debug pushd build\debug
cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug ..\..
cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug ..\.. cmake --build . --config Debug
cmake --build . --config Debug popd
pause pause
popd popd

View File

@@ -1,10 +1,12 @@
@echo off @echo off
pushd "%~dp0%"
mkdir build mkdir build
mkdir build\release mkdir build\release
pushd build\release pushd build\release
cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Release ..\..
cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Release ..\.. cmake --build . --config Release
cmake --build . --config Release popd
pause pause
popd popd