doozer macOS script simplification

This commit is contained in:
Alden Torres 2018-11-18 10:02:02 -05:00 committed by Arvid Norberg
parent 8d7af2344f
commit f3d1352cb3
1 changed files with 3 additions and 6 deletions

View File

@ -14,15 +14,12 @@
},
"macOS": {
"buildenv": "osx",
"homebrew": { "formulae": ["wget"] },
"buildcmd": [
"wget --quiet -O boost.zip https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.zip",
"unzip -qq boost.zip",
"rm boost.zip",
"(cd boost_1_68_0/tools/build/src/engine && ./build.sh)",
"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++ : <cxxflags>-std=c++11 ;\" > ~/user-config.jam",
"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}"
]
}
}