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:
parent
f240bdd082
commit
8a0a4835ee
@ -19,4 +19,12 @@ include("${CMAKE_CURRENT_LIST_DIR}/yaml-cpp-targets.cmake")
|
|||||||
# These are IMPORTED targets created by yaml-cpp-targets.cmake
|
# These are IMPORTED targets created by yaml-cpp-targets.cmake
|
||||||
set(YAML_CPP_LIBRARIES "@EXPORT_TARGETS@")
|
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)
|
check_required_components(yaml-cpp)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user