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.
21 lines
352 B
21 lines
352 B
# CMake script to replace items
|
|
# in sources generated by glib-mkenums
|
|
|
|
FILE(READ ${ENUM_INPUT_SRC} enum_in)
|
|
|
|
STRING(REPLACE
|
|
"_t_get_type"
|
|
"_get_type"
|
|
enum_out_tmp
|
|
"${enum_in}"
|
|
)
|
|
|
|
STRING(REPLACE
|
|
"_T ("
|
|
" ("
|
|
enum_out
|
|
"${enum_out_tmp}"
|
|
)
|
|
|
|
FILE(WRITE ${ENUM_OUTPUT_SRC} "${enum_out}")
|
|
FILE(REMOVE ${ENUM_INPUT_SRC}) |