Skip to content
Snippets Groups Projects

Feature eigen

Merged Adrien Crovato requested to merge feature_eigen into master
2 files
+ 13
17
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 3
17
@echo off
:: Ligne de commande qui va bien pour compiler mes brols
::
:: Utilisation:
:: - installer les libs (dans c:\local p. expl.)
:: - definir la variable d'env MYLOCAL (=c:\local p. expl. )
:: - double cliquer sur myenv.bat
:: - cd ..\wavesB
:: - cmake -G "Visual Studio 14 2015 Win64" -DWAVES_USE_TLNOS=OFF ..\waves
:: ou (tbox seul):
:: - cmake -G "Visual Studio 14 2015 Win64" -DWAVES_USE_TLNOS=OFF -DWAVES_USE_WAVES=OFF -DWAVES_USE_HEAT=OFF -DWAVES_USE_MIRRORS=OFF ..\waves
:: - cmake --build . --config Release -- -j6
:: - ctest -C Release
:: Incredibuild (http://www.incredibuild.com/webhelp/#BuildConsole.html)
:: - BuildConsole Waves.sln /rebuild /cfg="Release|x64"
:: command line for MSVC build (Visual Studio 2015)
set PATH=%PATH%;%MYLOCAL%\swigwin-3.0.12
set INCLUDE=%MYLOCAL%\include;%MYLOCAL%\MUMPS\include;%MYLOCAL%\eigen-3.3.2
set PATH=%PATH%;%MYLOCAL%\swigwin
set INCLUDE=%MYLOCAL%\include;%MYLOCAL%\MUMPS\include;%MYLOCAL%\eigen
set LIB=%MYLOCAL%\MUMPS\lib
:: ok (MKL + VS en ligne de commande)
call "C:\Program Files (x86)\IntelSWTools\compilers_and_libraries\windows\mkl\bin\mklvars.bat" intel64 vs2015
call "C:\Program Files (x86)\IntelSWTools\compilers_and_libraries\windows\tbb\bin\tbbvars.bat" intel64 vs2015
%comspec% /K ""C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64"
Loading