forked from DanEngelbrecht/longtail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prep_dist.bat
22 lines (17 loc) · 1.51 KB
/
prep_dist.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@echo off
SetLocal EnableDelayedExpansion
call !BASE_DIR!arch_helper.bat
mkdir build\artifacts\artifacts-cmd-debug\!PLATFORM!\longtail\debug
copy build\!PLATFORM!\longtail\debug\*.exe build\artifacts\artifacts-cmd-debug\!PLATFORM!\longtail\debug
copy build\!PLATFORM!\longtail\debug\*.pdb build\artifacts\artifacts-cmd-debug\!PLATFORM!\longtail\debug
mkdir build\artifacts\artifacts-cmd-release\!PLATFORM!\longtail\release
copy build\!PLATFORM!\longtail\release\*.exe build\artifacts\artifacts-cmd-release\!PLATFORM!\longtail\release
copy build\!PLATFORM!\longtail\release\*.pdb build\artifacts\artifacts-cmd-release\!PLATFORM!\longtail\release
mkdir build\artifacts\artifacts-shared_lib-debug\!PLATFORM!\longtail_dylib\debug
copy build\!PLATFORM!\longtail_dylib\release\longtail_dylib.* build\artifacts\artifacts-shared_lib-debug\!PLATFORM!\longtail_dylib\debug
mkdir build\artifacts\artifacts-shared_lib-release\!PLATFORM!\longtail_dylib\release
copy build\!PLATFORM!\longtail_dylib\release\longtail_dylib.* build\artifacts\artifacts-shared_lib-release\!PLATFORM!\longtail_dylib\release
mkdir build\artifacts\artifacts-static_lib-debug\!PLATFORM!\longtail_static\debug
copy build\!PLATFORM!\longtail_static\debug\liblongtail_static.* build\artifacts\artifacts-static_lib-debug\!PLATFORM!\longtail_static\debug
mkdir build\artifacts\artifacts-static_lib-release\!PLATFORM!\longtail_static\release
copy build\!PLATFORM!\longtail_static\release\liblongtail_static.* build\artifacts\artifacts-static_lib-release\!PLATFORM!\longtail_static\release