This repository has been archived by the owner on Jun 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Install.bat
36 lines (29 loc) · 1.56 KB
/
Install.bat
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
@ECHO OFF
SET CONFIG=debug
IF "%~1"=="" (SET CONFIG=release) ELSE (SET CONFIG=%1)
ECHO ---------------- install third parties ----------------------
ECHO Install third parties : %CONFIG%
:: install all third parties in the %REMAKEN_PKG_ROOT%\packages. More information on remaken is available on https://github.com/b-com-software-basis/remaken
::install for windows
REMAKEN install -c %CONFIG% --cpp-std 17 -b cl-14.1 -o win -a x86_64 packagedependencies.txt
::Install for Android
conan profile update settings.os="Android" default
conan profile update settings.os_build="Windows" default
conan profile update settings.arch="armv8" default
conan profile update settings.compiler="clang" default
conan profile update settings.compiler.version="8" default
conan profile update settings.compiler.libcxx="libc++" default
conan profile update settings.os.api_level="21" default
conan profile update settings.compiler.cppstd="17" default
remaken install -c %CONFIG% --cpp-std 17 -b clang -o android -a arm64-v8a packagedependencies.txt
conan profile update settings.os="Windows" default
conan profile update settings.os_build="Windows" default
conan profile update settings.arch="x86_64" default
conan profile update settings.compiler="Visual Studio" default
conan profile update settings.compiler.version="15" default
conan profile remove settings.compiler.libcxx default
conan profile remove settings.os.api_level default
conan profile update settings.compiler.cppstd="17" default
:: ECHO ---------------- bundle plugins ----------------------
CALL "Bundle.bat" %CONFIG%
EXIT /B 0