summaryrefslogtreecommitdiffstats
path: root/build/msvc/build_setup.bat
blob: 4314386b3a8ee7070f23011bedbc41abb3f1c3fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@echo off

call "%~dp0build_env.bat"

cd /D %~dp0
cd ..\..
set R=%CD%

rd /s /q "%R%\lib\x64"
rd /s /q "%R%\lib\include\boost"
rd /s /q "%R%\bin\x64\Release_CUDA"

cd /D "%B_BOOST%\lib64-msvc-14.0"

mkdir "%R%\lib\x64"
mkdir "%R%\bin\x64\Release_CUDA"

copy boost_unit_test_framework-vc140-mt-%B_BV%.lib %R%\lib\x64
copy boost_unit_test_framework-vc140-mt-gd-%B_BV%.lib %R%\lib\x64

copy libboost_chrono-vc140-mt-%B_BV%.lib %R%\lib\x64
copy libboost_chrono-vc140-mt-gd-%B_BV%.lib %R%\lib\x64

copy libboost_date_time-vc140-mt-%B_BV%.lib %R%\lib\x64
copy libboost_date_time-vc140-mt-gd-%B_BV%.lib %R%\lib\x64

copy libboost_system-vc140-mt-%B_BV%.lib %R%\lib\x64
copy libboost_system-vc140-mt-gd-%B_BV%.lib %R%\lib\x64

copy libboost_thread-vc140-mt-%B_BV%.lib %R%\lib\x64
copy libboost_thread-vc140-mt-gd-%B_BV%.lib %R%\lib\x64

cd %B_BOOST%

xcopy /i /e /q boost "%R%\lib\include\boost"

pause