doozer macOS script simplification
This commit is contained in:
parent
8d7af2344f
commit
f3d1352cb3
|
@ -14,15 +14,12 @@
|
||||||
},
|
},
|
||||||
"macOS": {
|
"macOS": {
|
||||||
"buildenv": "osx",
|
"buildenv": "osx",
|
||||||
"homebrew": { "formulae": ["wget"] },
|
|
||||||
"buildcmd": [
|
"buildcmd": [
|
||||||
"wget --quiet -O boost.zip https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.zip",
|
"curl -Ls https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.tar.gz | tar xz",
|
||||||
"unzip -qq boost.zip",
|
"(cd boost_1_68_0 && ./bootstrap.sh)",
|
||||||
"rm boost.zip",
|
|
||||||
"(cd boost_1_68_0/tools/build/src/engine && ./build.sh)",
|
|
||||||
"echo \"using darwin : : clang++ : <cxxflags>-std=c++11 ;\" > ~/user-config.jam",
|
"echo \"using darwin : : clang++ : <cxxflags>-std=c++11 ;\" > ~/user-config.jam",
|
||||||
"cd simulation",
|
"cd simulation",
|
||||||
"BOOST_ROOT=${PWD}/../boost_1_68_0 ../boost_1_68_0/tools/build/src/engine/bin.macosxx86_64/bjam --hash -j${PARALLEL}"
|
"BOOST_ROOT=${PWD}/../boost_1_68_0 ../boost_1_68_0/bjam --hash -j${PARALLEL}"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue