-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.bat
23 lines (21 loc) · 1.57 KB
/
build.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
chcp 65001
REM windows平台编译项目
set CONAN_REVISIONS_ENABLED=1
set CONAN_ARCHIVE_PATH=%~dp0temp/archive
REM conan create . daixian/stable -s compiler.runtime=MT -s arch=x86_64 -s build_type=Release --build missing
REM 这里test_package会失败,如果dlog:shared=True
conan create . daixian/stable -s compiler.runtime=MD -s arch=x86_64 -s build_type=Release -o dlog:shared=False --build missing
conan create . daixian/stable -s compiler.runtime=MD -s arch=x86_64 -s build_type=Release -o dlog:shared=True --build missing
conan create . daixian/stable -s compiler.runtime=MT -s arch=x86_64 -s build_type=Release -o dlog:shared=False --build missing
conan create . daixian/stable -s compiler.runtime=MT -s arch=x86_64 -s build_type=Release -o dlog:shared=True --build missing
conan create . daixian/stable -s compiler.runtime=MD -s arch=x86 -s build_type=Release -o dlog:shared=False --build missing
conan create . daixian/stable -s compiler.runtime=MD -s arch=x86 -s build_type=Release -o dlog:shared=True --build missing
conan create . daixian/stable -s compiler.runtime=MT -s arch=x86 -s build_type=Release -o dlog:shared=False --build missing
conan create . daixian/stable -s compiler.runtime=MT -s arch=x86 -s build_type=Release -o dlog:shared=True --build missing
REM conan upload dlog/2.5.7@daixian/stable --all -r=xuexue
@REM conan upload fmt --all -r=xuexue
@REM conan upload openssl --all -r=xuexue
@REM conan upload poco --all -r=xuexue
@REM conan upload rapidjson --all -r=xuexue
@REM conan upload spdlog --all -r=xuexue
@REM conan upload zlib --all -r=xuexue