Skip to content

Commit

Permalink
changed build.bat to release and debug versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Dowsey committed Dec 15, 2014
1 parent b2f4c4d commit baa7c61
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ CMakeFiles
Makefile
cmake_install.cmake
install_manifest.txt
build
release
debug
8 changes: 4 additions & 4 deletions cmake_vs10_intel14_x64.bat → debug_vs10_intel14_x64.bat
Original file line number Diff line number Diff line change
@@ -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.
@mkdir debug
@cd debug
@cmake -G"Visual Studio 10 2010 Win64" -T"Intel C++ Compiler XE 14.0" -C"..\..\seamass-windeps\debug.cmake" %* ..
@popd
5 changes: 5 additions & 0 deletions release_vs10_intel14_x64.bat
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit baa7c61

Please sign in to comment.