Add missing file

This commit is contained in:
jean-pierre charras 2019-09-29 17:36:46 +02:00
parent 8ed49b3f68
commit 1c03d6dec2
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
# CMake script file to process a text file by wrapping every line in double quotes.
# Input file must not abuse quotes, staying with single quotes is probably best.
# note also empty lines cannot be stripped: they have a meaning (separator) in markdown
# so we use file( READ ... ) to read the full file content, including empty lines
file( READ ${inputFile} buffer )
file( WRITE ${outputFile} "// Do not edit this file, it is autogenerated by CMake from an .md file\n" )
# Replace each EOL char by "\n" + " + EOL
STRING(REGEX REPLACE "\n" "\\\\n\"\n\"" buff_m ${buffer})
# Write the buffer between quotes
file( APPEND ${outputFile} "_HKI( \"" ${buff_m} "\" )\n" )