mirror of
https://github.com/reactos/CMake.git
synced 2024-12-21 03:00:59 +00:00
8 lines
280 B
CMake
8 lines
280 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:NonExistant,INCLUDE_DIRECTORIES>")
|