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.
11 lines
394 B
11 lines
394 B
5 years ago
|
cmake_minimum_required(VERSION 3.10)
|
||
|
|
||
|
# Read mocs_compilation.cpp file into variable
|
||
|
file(READ "${MCF}" MOCS_COMPILATION)
|
||
|
string(REPLACE "\\" "\\\\" MOCS_COMPILATION "${MOCS_COMPILATION}" )
|
||
|
string(REPLACE "\"" "\\\"" MOCS_COMPILATION "${MOCS_COMPILATION}" )
|
||
|
string(REPLACE "\n" "\"\n\"" MOCS_COMPILATION "${MOCS_COMPILATION}" )
|
||
|
|
||
|
# Configure file
|
||
|
configure_file ( "${CF_IN}" "${CF_OUT}" @ONLY )
|