mirror of
https://github.com/reactos/CMake.git
synced 2025-01-04 17:58:41 +00:00
08cb4fa4c0
This use of generator expressions, like all others to come which operate on target properties, must initalize the dag checker.
9 lines
306 B
CMake
9 lines
306 B
CMake
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/main.cpp"
|
|
"int main(int, char **) { return 0; }\n")
|
|
|
|
add_executable(TargetPropertyGeneratorExpressions
|
|
"${CMAKE_CURRENT_BINARY_DIR}/main.cpp")
|
|
include_directories(
|
|
"$<TARGET_PROPERTY:TargetPropertyGeneratorExpressions,INCLUDE_DIRECTORIES>")
|