Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
RunCMake
/
TargetProperties
/
Deprecation.cmake
blob: 93612732c715208cf0ac711e6005623142902250 [
file
] [
log
] [
blame
]
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
)