File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 86
86
[submodule "3rdparty/nbl_spirv_cross "]
87
87
path = 3rdparty/nbl_spirv_cross
88
88
url = https://github.com/devshgraphicsprogramming/SPIRV-Cross.git
89
- [submodule "3rdparty/pstl/oneDPL/oneDPL "]
90
- path = 3rdparty/pstl/oneDPL/oneDPL
91
- url = https://github.com/oneapi-src/oneDPL.git
92
89
[submodule "3rdparty/pstl/oneTBB "]
93
90
path = 3rdparty/pstl/oneTBB
94
91
url = https://github.com/Devsh-Graphics-Programming/oneTBB.git
Original file line number Diff line number Diff line change @@ -551,7 +551,9 @@ nbl_target_link_spirv_tools(Nabla)
551
551
nbl_target_link_volk (Nabla )
552
552
nbl_target_link_EGL (Nabla )
553
553
nbl_target_link_simdjson (Nabla )
554
- nbl_target_link_oneDPL (Nabla )
554
+ if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" )
555
+ nbl_target_link_oneDPL (Nabla )
556
+ endif ()
555
557
556
558
#target_link_libraries(Nabla INTERFACE ${OPENGL_gl_LIBRARY})
557
559
if (UNIX )
@@ -706,7 +708,9 @@ nbl_install_lib(OSDependent)
706
708
nbl_install_lib (zlibstatic )
707
709
nbl_install_lib (simdjson )
708
710
nbl_install_lib (volk )
709
- nbl_install_lib (tbb )
710
- nbl_install_lib (tbbmalloc )
711
- nbl_install_lib (tbbmalloc_proxy )
711
+ if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" )
712
+ nbl_install_lib (tbb )
713
+ nbl_install_lib (tbbmalloc )
714
+ nbl_install_lib (tbbmalloc_proxy )
715
+ endif ()
712
716
You can’t perform that action at this time.
0 commit comments