mirror of
https://github.com/reactos/CMake.git
synced 2024-12-15 15:48:52 +00:00
c903b5319b
Restore support for the undocumented <CONFIG>_LOCATION target property removed by commit v3.0.0-rc1~175^2 (cmTarget: Remove support for <CONFIG>_LOCATION property, 2013-12-30) as part of the CMP0026 OLD behavior.
8 lines
134 B
CMake
8 lines
134 B
CMake
|
|
enable_language(CXX)
|
|
|
|
cmake_policy(SET CMP0026 NEW)
|
|
|
|
add_library(somelib empty.cpp)
|
|
get_target_property(_loc somelib LOCATION_Debug)
|