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