summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/TargetProperties/Deprecation.cmake
blob: 93612732c715208cf0ac711e6005623142902250 (plain)
1
2
3
4
5
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)