From cc6780678be056d11c3e7b0f671c63dabcc45665 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 17 Mar 2017 09:41:16 -0500 Subject: [PATCH] Build Changes --- CMakeLists.txt | 1 + build_debug_x64.cmd | 8 +++++--- build_release_x64.cmd | 8 +++++--- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0632a11..c812b7b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -96,5 +96,6 @@ if (MSVC OR MINGW) endif() endif() + #Common Configuration Post-setup include_directories(${3RD_PARTY_INCLUDES} ${COMMON_INCLUDES}) \ No newline at end of file diff --git a/build_debug_x64.cmd b/build_debug_x64.cmd index 8a4b255..1cca2e1 100644 --- a/build_debug_x64.cmd +++ b/build_debug_x64.cmd @@ -1,10 +1,12 @@ @echo off +pushd "%~dp0%" + mkdir build mkdir build\debug pushd build\debug - -cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug ..\.. -cmake --build . --config Debug + cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug ..\.. + cmake --build . --config Debug +popd pause popd \ No newline at end of file diff --git a/build_release_x64.cmd b/build_release_x64.cmd index a136fa3..90022e5 100644 --- a/build_release_x64.cmd +++ b/build_release_x64.cmd @@ -1,10 +1,12 @@ @echo off +pushd "%~dp0%" + mkdir build mkdir build\release pushd build\release - -cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Release ..\.. -cmake --build . --config Release + cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Release ..\.. + cmake --build . --config Release +popd pause popd \ No newline at end of file