Skip to content

Commit

Permalink
changed build scripts to intel 2013/2015 compiler for both release an…
Browse files Browse the repository at this point in the history
…d debug
  • Loading branch information
Andrew Dowsey committed Apr 5, 2015
1 parent baa7c61 commit 70b0f8a
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 12 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ CMakeFiles
Makefile
cmake_install.cmake
install_manifest.txt
release
debug
build
22 changes: 22 additions & 0 deletions cmake_intel14_msvc2012_64.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
@echo off
setlocal

set "SEAMASS_TOOLSET=intel64"
mkdir build
mkdir build\%SEAMASS_TOOLSET%

set "SEAMASS_BUILD=debug"
mkdir build\%SEAMASS_TOOLSET%\%SEAMASS_BUILD%
pushd build\%SEAMASS_TOOLSET%\%SEAMASS_BUILD%
cmake -G"Visual Studio 11 2012 Win64" -T"Intel C++ Compiler XE 14.0" -C"%~dp0..\seamass-windeps\build.cmake" %* "%~dp0"
if %errorlevel% neq 0 goto eof
popd

set "SEAMASS_BUILD=release"
mkdir build\%SEAMASS_TOOLSET%\%SEAMASS_BUILD%
pushd build\%SEAMASS_TOOLSET%\%SEAMASS_BUILD%
cmake -G"Visual Studio 11 2012 Win64" -T"Intel C++ Compiler XE 14.0" -C"%~dp0..\seamass-windeps\build.cmake" %* "%~dp0"
if %errorlevel% neq 0 goto eof

:eof
popd
22 changes: 22 additions & 0 deletions cmake_intel15_msvc2012_64.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
@echo off
setlocal

set "SEAMASS_TOOLSET=intel64"
mkdir build
mkdir build\%SEAMASS_TOOLSET%

set "SEAMASS_BUILD=debug"
mkdir build\%SEAMASS_TOOLSET%\%SEAMASS_BUILD%
pushd build\%SEAMASS_TOOLSET%\%SEAMASS_BUILD%
cmake -G"Visual Studio 11 2012 Win64" -T"Intel C++ Compiler XE 15.0" -C"%~dp0..\seamass-windeps\build.cmake" %* "%~dp0"
if %errorlevel% neq 0 goto eof
popd

set "SEAMASS_BUILD=release"
mkdir build\%SEAMASS_TOOLSET%\%SEAMASS_BUILD%
pushd build\%SEAMASS_TOOLSET%\%SEAMASS_BUILD%
cmake -G"Visual Studio 11 2012 Win64" -T"Intel C++ Compiler XE 15.0" -C"%~dp0..\seamass-windeps\build.cmake" %* "%~dp0"
if %errorlevel% neq 0 goto eof

:eof
popd
5 changes: 0 additions & 5 deletions debug_vs10_intel14_x64.bat

This file was deleted.

5 changes: 0 additions & 5 deletions release_vs10_intel14_x64.bat

This file was deleted.

0 comments on commit 70b0f8a

Please sign in to comment.