Target only TBB, not the conan specific meta target onetbb:onetbb.

This commit is contained in:
Julian Groß 2024-12-22 23:53:40 +01:00 committed by Edgar
parent add0436444
commit df8045d1d7
No known key found for this signature in database
GPG key ID: 3C2E1F2C1C353131

View file

@ -1,5 +1,6 @@
#
# Copyright 2015 High Fidelity, Inc.
# Copyright 2024 Overte e.V.
# Created by Bradley Austin Davis on 2015/10/10
#
# Distributed under the Apache License, Version 2.0.
@ -16,9 +17,9 @@ if (ANDROID)
target_include_directories(${TARGET_NAME} SYSTEM PUBLIC ${TBB_INCLUDE_DIRS})
target_link_libraries(${TARGET_NAME} ${TBB_LIBRARIES})
else()
# using VCPKG for TBB
# using Conan for TBB
find_package(TBB CONFIG REQUIRED)
target_link_libraries(${TARGET_NAME} onetbb::onetbb)
target_link_libraries(${TARGET_NAME} TBB::tbb)
endif()
endmacro()