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.
9 lines
329 B
9 lines
329 B
cmake_policy(SET CMP0070 NEW)
|
|
|
|
set(text)
|
|
string(APPEND text "$<$<CONFIG:CustomConfig>:1>")
|
|
string(APPEND text "$<$<CONFIG:Release>:2>")
|
|
string(APPEND text "$<$<CONFIG:Debug,Release>:3>")
|
|
string(APPEND text "$<$<CONFIG:Release,CustomConfig,Debug>:4>")
|
|
file(GENERATE OUTPUT CONFIG-multiple-entries-generated.txt CONTENT "${text}")
|