diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2016-11-24 04:25:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-24 04:25:02 -0800 |
commit | c4b5018ca57213601d0b31139be8c4268a308910 (patch) | |
tree | 6a107420f7b6feb54429e6dbd1bb420f2f15d7b4 /build/msvc/build_clean.bat | |
parent | fc43ab40e6aaed28ecbeb904b3ec5d67f2ded77c (diff) | |
parent | 80d5397e251d8e12c8cd77efcacc54b9f7de3f0b (diff) | |
download | astra-c4b5018ca57213601d0b31139be8c4268a308910.tar.gz astra-c4b5018ca57213601d0b31139be8c4268a308910.tar.bz2 astra-c4b5018ca57213601d0b31139be8c4268a308910.tar.xz astra-c4b5018ca57213601d0b31139be8c4268a308910.zip |
Merge pull request #74 from wjp/windows
Move to VS2015+CUDA8 and automate Windows builds
Diffstat (limited to 'build/msvc/build_clean.bat')
-rw-r--r-- | build/msvc/build_clean.bat | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/build/msvc/build_clean.bat b/build/msvc/build_clean.bat new file mode 100644 index 0000000..4525529 --- /dev/null +++ b/build/msvc/build_clean.bat @@ -0,0 +1,12 @@ +@echo off + +set MATLAB_ROOT=C:\Program Files\MATLAB\R2015a + +call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64\vcvars64.bat" + +cd %~dp0 +cd ..\.. + +msbuild astra_vc14.sln /p:Configuration=Release_CUDA /p:Platform=x64 /t:clean + +pause |