mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 14:49:33 +08:00
bf1d50ff7a
* [opencl]: replaced hardcoded BUILD_SHARED_LIBS (user context) with VCPKG_LIBRARY_LINKAGE (library build context) * Updated version registries
20 lines
735 B
CMake
20 lines
735 B
CMake
_find_package(${ARGS})
|
|
if("@VCPKG_LIBRARY_LINKAGE@" STREQUAL "static" AND (NOT CMAKE_SYSTEM_NAME MATCHES "Darwin"))
|
|
find_package(Threads REQUIRED)
|
|
set(OpenCL_Extra_Libs ${CMAKE_DL_LIBS} ${CMAKE_THREAD_LIBS_INIT})
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Windows")
|
|
list(APPEND OpenCL_Extra_Libs cfgmgr32)
|
|
if($ENV{WindowsSDKVersion} MATCHES "^10")
|
|
list(APPEND OpenCL_Extra_Libs OneCoreUAP)
|
|
endif()
|
|
endif(CMAKE_SYSTEM_NAME MATCHES "Windows")
|
|
|
|
if(TARGET OpenCL::OpenCL)
|
|
set_property(TARGET OpenCL::OpenCL APPEND PROPERTY INTERFACE_LINK_LIBRARIES ${OpenCL_Extra_Libs})
|
|
endif()
|
|
if(OpenCL_LIBRARIES)
|
|
list(APPEND OpenCL_LIBRARIES ${OpenCL_Extra_Libs})
|
|
endif()
|
|
unset(OpenCL_Extra_Libs)
|
|
endif()
|