You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
348 B

cmake_policy(SET CMP0070 NEW)
set(text)
string(APPEND text "$<$<CONFIG:>:1>")
string(APPEND text "$<$<CONFIG:Release,>:2>")
string(APPEND text "$<$<CONFIG:,Release>:3>")
string(APPEND text "$<$<CONFIG:Release,,Debug>:4>")
string(APPEND text "$<$<CONFIG:Release,Debug>:5>")
file(GENERATE OUTPUT CONFIG-empty-entries-generated.txt CONTENT ${text})