diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2016-12-01 06:03:22 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-01 06:03:22 -0800 |
commit | fbe1a7638adb10e45eeff4b04caadab8ab324a2d (patch) | |
tree | 8febba68b7d99f1174e92bd23a5f3495bd301a0b /python/conda/bld.bat | |
parent | 75ae79136451cad28375c1bbce6e6cac6080f29e (diff) | |
parent | 93d14a3424d4bdc980eeab3f02e250c07e6c37b6 (diff) | |
download | astra-fbe1a7638adb10e45eeff4b04caadab8ab324a2d.tar.gz astra-fbe1a7638adb10e45eeff4b04caadab8ab324a2d.tar.bz2 astra-fbe1a7638adb10e45eeff4b04caadab8ab324a2d.tar.xz astra-fbe1a7638adb10e45eeff4b04caadab8ab324a2d.zip |
Merge pull request #81 from wjp/conda_release
Add scripts for building conda packages using Docker
Diffstat (limited to 'python/conda/bld.bat')
-rw-r--r-- | python/conda/bld.bat | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/python/conda/bld.bat b/python/conda/bld.bat new file mode 100644 index 0000000..9da8cd4 --- /dev/null +++ b/python/conda/bld.bat @@ -0,0 +1,35 @@ +@echo off + +set R=%SRC_DIR%% + +set B_VC=C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64 +call "%B_VC%\vcvars64.bat" + +cd /D %R% + +set B_BV=1_61 + +mkdir "%R%\lib\x64" +mkdir "%R%\bin\x64\Release_CUDA" + +cd /D %CONDA_PREFIX%\Library\lib + + +copy boost_unit_test_framework-vc140-mt-%B_BV%.lib %R%\lib\x64 +copy libboost_chrono-vc140-mt-%B_BV%.lib %R%\lib\x64 +copy libboost_date_time-vc140-mt-%B_BV%.lib %R%\lib\x64 +copy libboost_system-vc140-mt-%B_BV%.lib %R%\lib\x64 +copy libboost_thread-vc140-mt-%B_BV%.lib %R%\lib\x64 + +cd /D %CONDA_PREFIX%\Library\include + +xcopy /i /e /q boost "%R%\lib\include\boost" + +cd /D %R% + +cd python + +set VS90COMNTOOLS=%VS140COMNTOOLS% +set CL=/DASTRA_CUDA /DASTRA_PYTHON "/I%R%\include" "/I%R%\lib\include" "/I%CUDA_PATH%\include" +copy %CONDA_PREFIX%\Library\lib\AstraCuda64.lib astra.lib +python builder.py build_ext --compiler=msvc install |