cmake/Tests/RunCMake/TargetProperties/Deprecation.cmake

6 lines
245 B
CMake
Raw Normal View History

2020-08-30 11:54:41 +02:00
add_library(testLibDeprecation STATIC empty.cpp)
set_property(TARGET testLibDeprecation PROPERTY DEPRECATION "Deprecated version. Please use latest version")
add_executable(testExe1 empty.cpp)
target_link_libraries(testExe1 testLibDeprecation)