Skip to content

Commit

Permalink
TBB : Move to config-based build
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhaddon committed Sep 11, 2018
1 parent 4273cf4 commit 10d2528
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 42 deletions.
51 changes: 51 additions & 0 deletions TBB/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{

"downloads" : [

"https://github.com/01org/tbb/archive/2017_U6.tar.gz"

],

"license" : "LICENSE",

"commands" : [

"make -j {jobs} stdver=c++11",
"cp -r include/tbb {buildDir}/include",
"{installLibsCommand}",

],

"platform:linux" : {

"environment" : {

"tbb_os" : "linux",

},

"variables" : {

"installLibsCommand" : "cp build/*_release/*.so* {buildDir}/lib",

},

},

"platform:osx" : {

"environment" : {

"tbb_os" : "macos",

},

"variables" : {

"installLibsCommand" : "cp build/macos_*_release/*.dylib {buildDir}/lib",

},

},

}
Binary file removed archives/tbb-2017_U6.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion build/buildAll.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ cd `dirname $0`
./buildTIFF.sh
(cd .. && ./build/build.py --project PNG --buildDir $BUILD_DIR)
(cd .. && ./build/build.py --project FreeType --buildDir $BUILD_DIR)
./buildTBB.sh
(cd .. && ./build/build.py --project TBB --buildDir $BUILD_DIR)
./buildEXR.sh
./buildFonts.sh
(cd .. && ./build/build.py --project GLEW --buildDir $BUILD_DIR)
Expand Down
41 changes: 0 additions & 41 deletions build/buildTBB.sh

This file was deleted.

0 comments on commit 10d2528

Please sign in to comment.