mirror of
https://github.com/reactos/CMake.git
synced 2024-12-15 23:57:44 +00:00
06f61c26cf
Add policy CMP0059 to cover this change. The property has been deprecated since CMake 2.4 anyway. This will help clean up cmMakefile -- the DefineFlagsOrig member should not need to exist.
18 lines
301 B
CMake
18 lines
301 B
CMake
|
|
cmake_policy(SET CMP0059 NEW)
|
|
|
|
add_definitions(-DSOME_DEF)
|
|
|
|
get_property(defs DIRECTORY .
|
|
PROPERTY DEFINITIONS
|
|
)
|
|
message("DEFS:${defs}")
|
|
|
|
set_property(DIRECTORY .
|
|
PROPERTY DEFINITIONS CUSTOM_CONTENT
|
|
)
|
|
get_property(content DIRECTORY .
|
|
PROPERTY DEFINITIONS
|
|
)
|
|
message("CUSTOM CONTENT:${content}")
|