mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 20:46:41 +08:00
bd2932aab9
* [opencv] Fix dependency port protobuf * Add vcpkg-cmake-wrapper.cmake for protobuf * Remove blank line * Set the cmake_policy
14 lines
424 B
CMake
14 lines
424 B
CMake
if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.3)
|
|
cmake_policy(PUSH)
|
|
cmake_policy(SET CMP0057 NEW)
|
|
if(NOT "CONFIG" IN_LIST ARGS AND NOT "NO_MODULE" IN_LIST ARGS)
|
|
if("@VCPKG_LIBRARY_LINKAGE@" STREQUAL "static")
|
|
set(Protobuf_USE_STATIC_LIBS ON)
|
|
else()
|
|
set(Protobuf_USE_STATIC_LIBS OFF)
|
|
endif()
|
|
endif()
|
|
cmake_policy(POP)
|
|
endif()
|
|
_find_package(${ARGS})
|