cmake/Tests/RunCMake/TargetProperties/Deprecation.cmake
2020-08-30 11:54:41 +02:00

6 lines
245 B
CMake

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)