diff options
Diffstat (limited to 'build/msvc/build_release.bat')
-rw-r--r-- | build/msvc/build_release.bat | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/build/msvc/build_release.bat b/build/msvc/build_release.bat index c8228f0..f10ddc5 100644 --- a/build/msvc/build_release.bat +++ b/build/msvc/build_release.bat @@ -14,7 +14,7 @@ cd release mkdir src mkdir matlab mkdir python27 -mkdir python36 +mkdir python37 cd src git clone -b %B_RELEASE_TAG% https://github.com/astra-toolbox/astra-toolbox astra-%B_RELEASE% @@ -39,8 +39,8 @@ mkdir mex copy %R%\bin\x64\Release_CUDA\*.mexw64 mex copy %R%\bin\x64\Release_CUDA\AstraCuda64.dll mex copy %R%\bin\x64\Release_CUDA\AstraCuda64.lib mex -copy "%CUDA_PATH%\bin\cudart64_80.dll" mex -copy "%CUDA_PATH%\bin\cufft64_80.dll" mex +copy "%CUDA_PATH%\bin\cudart64_90.dll" mex +copy "%CUDA_PATH%\bin\cufft64_90.dll" mex pause @@ -59,15 +59,15 @@ mkdir astra call "%B_WINPYTHON2%\scripts\env.bat" copy %WINPYDIR%\lib\site-packages\astra\*.* astra copy %R%\bin\x64\Release_CUDA\AstraCuda64.lib astra -copy "%CUDA_PATH%\bin\cudart64_80.dll" astra -copy "%CUDA_PATH%\bin\cufft64_80.dll" astra +copy "%CUDA_PATH%\bin\cudart64_90.dll" astra +copy "%CUDA_PATH%\bin\cufft64_90.dll" astra ( echo ----------------------------------------------------------------------- echo This file is part of the ASTRA Toolbox echo. -echo Copyright: 2010-2018, imec Vision Lab, University of Antwerp -echo 2014-2018, CWI, Amsterdam +echo Copyright: 2010-2019, imec Vision Lab, University of Antwerp +echo 2014-2019, CWI, Amsterdam echo http://visielab.uantwerpen.be/ and http://www.cwi.nl/ echo License: Open Source under GPLv3 echo Contact: astra@astra-toolbox.com @@ -90,7 +90,7 @@ pause rem ------------------------------------------------------------------- -cd %R%\release\python36 +cd %R%\release\python37 mkdir astra-%B_RELEASE% cd astra-%B_RELEASE% xcopy /e /i %R%\samples\python samples @@ -103,15 +103,15 @@ mkdir astra call "%B_WINPYTHON3%\scripts\env.bat" copy %WINPYDIR%\lib\site-packages\astra\*.* astra copy %R%\bin\x64\Release_CUDA\AstraCuda64.lib astra -copy "%CUDA_PATH%\bin\cudart64_80.dll" astra -copy "%CUDA_PATH%\bin\cufft64_80.dll" astra +copy "%CUDA_PATH%\bin\cudart64_90.dll" astra +copy "%CUDA_PATH%\bin\cufft64_90.dll" astra ( echo ----------------------------------------------------------------------- echo This file is part of the ASTRA Toolbox echo. -echo Copyright: 2010-2018, imec Vision Lab, University of Antwerp -echo 2014-2018, CWI, Amsterdam +echo Copyright: 2010-2019, imec Vision Lab, University of Antwerp +echo 2014-2019, CWI, Amsterdam echo http://visielab.uantwerpen.be/ and http://www.cwi.nl/ echo License: Open Source under GPLv3 echo Contact: astra@astra-toolbox.com @@ -135,7 +135,7 @@ pause cd %R%\release python -c "import shutil; shutil.make_archive('astra-%B_RELEASE%-matlab-win-x64', 'zip', 'matlab')" python -c "import shutil; shutil.make_archive('astra-%B_RELEASE%-python27-win-x64', 'zip', 'python27')" -python -c "import shutil; shutil.make_archive('astra-%B_RELEASE%-python36-win-x64', 'zip', 'python36')" +python -c "import shutil; shutil.make_archive('astra-%B_RELEASE%-python37-win-x64', 'zip', 'python37')" python -c "import shutil; shutil.make_archive('astra-%B_RELEASE%', 'zip', 'src')" pause |