From c08af4dbe59e8ecf0012798beabce8af6836d3d3 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 16 Mar 2017 01:08:34 -0500 Subject: [PATCH] CMake --- build_debug_x64.cmd | 8 +++++--- build_release_x64.cmd | 10 ++++++++++ 2 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 build_release_x64.cmd diff --git a/build_debug_x64.cmd b/build_debug_x64.cmd index 289a254..271d20c 100644 --- a/build_debug_x64.cmd +++ b/build_debug_x64.cmd @@ -1,8 +1,10 @@ @echo off mkdir build -pushd build - -cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug .. +mkdir build\debug +pushd build\debug +cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug ..\.. +cmake --build . +pause popd \ No newline at end of file diff --git a/build_release_x64.cmd b/build_release_x64.cmd new file mode 100644 index 0000000..7840527 --- /dev/null +++ b/build_release_x64.cmd @@ -0,0 +1,10 @@ +@echo off +mkdir build +mkdir build\release +pushd build\release + +cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Release ..\.. +cmake --build . + +pause +popd \ No newline at end of file