CMake: Create add a deprecated yaml-cpp target.

This target is meant to provide compatibility with versions prior to
0.8.0.
This commit is contained in:
Pierre Wendling 2023-10-11 11:54:46 +02:00
parent f240bdd082
commit 8a0a4835ee
No known key found for this signature in database
GPG Key ID: 42824059D6D2FA0F

View File

@ -19,4 +19,12 @@ include("${CMAKE_CURRENT_LIST_DIR}/yaml-cpp-targets.cmake")
# These are IMPORTED targets created by yaml-cpp-targets.cmake
set(YAML_CPP_LIBRARIES "@EXPORT_TARGETS@")
add_library(yaml-cpp INTERFACE)
target_link_libraries(yaml-cpp INTERFACE yaml-cpp::yaml-cpp)
if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.17)
set_target_properties(yaml-cpp PROPERTIES
DEPRECATION "The target yaml-cpp is deprecated and will be removed in version 0.10.0. Use the yaml-cpp::yaml-cpp target instead."
)
endif()
check_required_components(yaml-cpp)