summaryrefslogtreecommitdiff
path: root/CMakeModules/Html2C.cmake
blob: 99919b31cedd17b6458ee8912f7ecd0814660a8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

# 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.

set( lines "" )
file( STRINGS ${inputFile} lines )

file( WRITE ${outputFile} "// Do not edit this file, it is autogenerated by CMake from an HTML file\n" )

foreach( line ${lines} )
    STRING(REGEX REPLACE "\"" "\\\\\"" linem ${line})
    file( APPEND ${outputFile} "\"" ${linem} "\\n\"\n" )
endforeach( line ${lines} )