forked from arvidn/libtorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.doozer.json
29 lines (28 loc) · 1 KB
/
.doozer.json
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
{
"submodules": ["simulation/libsimulator", "deps/try_signal"],
"targets": {
"x86_64": {
"buildenv": "xenial-amd64",
"builddeps": ["build-essential", "libssl-dev", "curl", "clang-3.8"],
"buildcmd": [
"clang++-3.8 --version",
"curl -Ls https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.tar.gz | tar xz",
"(cd boost_1_68_0 && ./bootstrap.sh)",
"",
"echo \"using clang : : clang++-3.8 ;\" > ~/user-config.jam",
"cd simulation",
"BOOST_ROOT=${PWD}/../boost_1_68_0 ../boost_1_68_0/bjam --hash -j${PARALLEL}"
]
},
"macOS": {
"buildenv": "osx",
"buildcmd": [
"curl -Ls https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.tar.gz | tar xz",
"(cd boost_1_68_0 && ./bootstrap.sh)",
"echo \"using darwin : : clang++ ;\" > ~/user-config.jam",
"cd simulation",
"BOOST_ROOT=${PWD}/../boost_1_68_0 ../boost_1_68_0/bjam --hash -j${PARALLEL}"
]
}
}
}