cmake/Tests/RunCMake/CMP0163/CMP0163-Common-Test2d.cmake

13 lines
347 B
CMake
Raw Normal View History

2024-07-09 14:46:46 +02:00
add_custom_target(custom)
target_sources(custom PRIVATE
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
)
set_source_files_properties(
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
PROPERTIES GENERATED "1")
get_property(prop SOURCE
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
PROPERTY GENERATED)
message(NOTICE "prop: `${prop}`")