Skip to content

Commit

Permalink
skip packaging of embree/TBB if using system provided packages
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwa committed Jul 21, 2024
1 parent a8d33fe commit 5fc8979
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-linux-64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ cd "$BUILD_DIR"

if [ "$USE_SYSTEM_TBB_AND_EMBREE" == "1" ]; then
if [ "$USE_ASAN" == "YES" ]; then
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DERICWTOOLS_ASAN=YES
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DERICWTOOLS_ASAN=YES -DSKIP_EMBREE_INSTALL=YES -DSKIP_TBB_INSTALL=YES
else
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake .. -DCMAKE_BUILD_TYPE=Release -DSKIP_EMBREE_INSTALL=YES -DSKIP_TBB_INSTALL=YES
fi
else
wget -q https://github.com/embree/embree/releases/download/v3.13.1/embree-3.13.1.x86_64.linux.tar.gz -O embree.tgz
Expand Down

0 comments on commit 5fc8979

Please sign in to comment.