3c37d2642d
Since support for generator expressions was added to OUTPUT_NAME it is possible for project code to cause recursion in this method by using a $<TARGET_FILE> genex. Detect and reject such cases.
4 lines
126 B
CMake
4 lines
126 B
CMake
enable_language(C)
|
|
add_executable(empty1 empty.c)
|
|
set_property(TARGET empty1 PROPERTY OUTPUT_NAME $<TARGET_FILE_NAME:empty1>)
|