From baa7c613fac4060643dbc5082d7837e2d66587fb Mon Sep 17 00:00:00 2001 From: Andrew Dowsey Date: Mon, 15 Dec 2014 11:31:57 +0000 Subject: [PATCH] changed build.bat to release and debug versions --- .gitignore | 3 ++- cmake_vs10_intel14_x64.bat => debug_vs10_intel14_x64.bat | 8 ++++---- release_vs10_intel14_x64.bat | 5 +++++ 3 files changed, 11 insertions(+), 5 deletions(-) rename cmake_vs10_intel14_x64.bat => debug_vs10_intel14_x64.bat (50%) create mode 100644 release_vs10_intel14_x64.bat diff --git a/.gitignore b/.gitignore index c6cb99d..4f9ac22 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ CMakeFiles Makefile cmake_install.cmake install_manifest.txt -build +release +debug \ No newline at end of file diff --git a/cmake_vs10_intel14_x64.bat b/debug_vs10_intel14_x64.bat similarity index 50% rename from cmake_vs10_intel14_x64.bat rename to debug_vs10_intel14_x64.bat index de6de26..969dd8c 100644 --- a/cmake_vs10_intel14_x64.bat +++ b/debug_vs10_intel14_x64.bat @@ -1,5 +1,5 @@ @pushd "%~dp0" -@mkdir build -@cd build -@cmake -G"Visual Studio 10 2010 Win64" -T"Intel C++ Compiler XE 14.0" -C"..\..\seamass-windeps\build.cmake" %* .. -@popd. \ No newline at end of file +@mkdir debug +@cd debug +@cmake -G"Visual Studio 10 2010 Win64" -T"Intel C++ Compiler XE 14.0" -C"..\..\seamass-windeps\debug.cmake" %* .. +@popd \ No newline at end of file diff --git a/release_vs10_intel14_x64.bat b/release_vs10_intel14_x64.bat new file mode 100644 index 0000000..3111ffe --- /dev/null +++ b/release_vs10_intel14_x64.bat @@ -0,0 +1,5 @@ +@pushd "%~dp0" +@mkdir release +@cd release +@cmake -G"Visual Studio 10 2010 Win64" -T"Intel C++ Compiler XE 14.0" -C"..\..\seamass-windeps\release.cmake" %* .. +@popd \ No newline at end of file