diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-11-18 16:53:17 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-11-24 13:20:21 +0100 |
commit | 80d5397e251d8e12c8cd77efcacc54b9f7de3f0b (patch) | |
tree | 6a107420f7b6feb54429e6dbd1bb420f2f15d7b4 /build/msvc/build_matlab.bat | |
parent | 09032e9dc99a7931f0d26f56322f8406d5462643 (diff) | |
download | astra-80d5397e251d8e12c8cd77efcacc54b9f7de3f0b.tar.gz astra-80d5397e251d8e12c8cd77efcacc54b9f7de3f0b.tar.bz2 astra-80d5397e251d8e12c8cd77efcacc54b9f7de3f0b.tar.xz astra-80d5397e251d8e12c8cd77efcacc54b9f7de3f0b.zip |
Add automated Windows build scripts
Diffstat (limited to 'build/msvc/build_matlab.bat')
-rw-r--r-- | build/msvc/build_matlab.bat | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/build/msvc/build_matlab.bat b/build/msvc/build_matlab.bat new file mode 100644 index 0000000..7a2ef79 --- /dev/null +++ b/build/msvc/build_matlab.bat @@ -0,0 +1,14 @@ +@echo off + +call "%~dp0build_env.bat" + +call "%B_VC%\vcvars64.bat" + +cd /D %~dp0 +cd ..\.. + +set MATLAB_ROOT=%B_MATLAB_ROOT% + +msbuild astra_vc14.sln /p:Configuration=Release_CUDA /p:Platform=x64 + +pause |