projects
/
platform
/
upstream
/
Vulkan-Loader.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2896ff0
)
cmake: Cleanup Threads::Threads logic
author
Juan Ramos
<juan@lunarg.com>
Fri, 25 Aug 2023 17:52:28 +0000
(11:52 -0600)
committer
Juan Ramos
<114601453+juan-lunarg@users.noreply.github.com>
Fri, 25 Aug 2023 18:11:36 +0000
(12:11 -0600)
Android isn't supported
loader/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/loader/CMakeLists.txt
b/loader/CMakeLists.txt
index 394ce22018bae99fd9d9741bf3fb3df1c3d2d678..e79f383005b2c5f91a8564d217121b7ad2fcf78e 100644
(file)
--- a/
loader/CMakeLists.txt
+++ b/
loader/CMakeLists.txt
@@
-324,10
+324,7
@@
else()
set_target_properties(vulkan
PROPERTIES SOVERSION "1"
VERSION ${VULKAN_LOADER_VERSION})
- target_link_libraries(vulkan PRIVATE ${CMAKE_DL_LIBS} m)
- if (NOT ANDROID)
- target_link_libraries(vulkan PRIVATE Threads::Threads)
- endif()
+ target_link_libraries(vulkan PRIVATE ${CMAKE_DL_LIBS} m Threads::Threads)
if (LOADER_ENABLE_ADDRESS_SANITIZER)
target_compile_options(vulkan PUBLIC -fsanitize=address)