mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 21:14:31 +08:00
9117f195fa
* [colmap] Fix LNK2019 in x64-windows-static triplet * [libraw] Add find lcms2 in the cmake wrapper file Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
26 lines
807 B
CMake
26 lines
807 B
CMake
set(LIBRAW_PREV_MODULE_PATH ${CMAKE_MODULE_PATH})
|
|
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR})
|
|
_find_package(${ARGS})
|
|
set(CMAKE_MODULE_PATH ${LIBRAW_PREV_MODULE_PATH})
|
|
|
|
if (@ENABLE_OPENMP@)
|
|
find_package(OpenMP REQUIRED)
|
|
if (OpenMP_FOUND)
|
|
list(APPEND LibRaw_LIBRARIES gomp)
|
|
list(APPEND LibRaw_r_LIBRARIES gomp)
|
|
endif()
|
|
endif()
|
|
|
|
if (@VCPKG_LIBRARY_LINKAGE@ STREQUAL "static")
|
|
find_package(Jasper REQUIRED)
|
|
if (Jasper_FOUND)
|
|
list(APPEND LibRaw_LIBRARIES ${JASPER_LIBRARIES})
|
|
list(APPEND LibRaw_r_LIBRARIES ${JASPER_LIBRARIES})
|
|
endif ()
|
|
find_package(lcms2 CONFIG REQUIRED)
|
|
if (lcms2_FOUND)
|
|
list(APPEND LibRaw_LIBRARIES lcms2::lcms2)
|
|
list(APPEND LibRaw_r_LIBRARIES lcms2::lcms2)
|
|
endif ()
|
|
endif()
|