Stop the Oboe recording stream when recording is stopped
[openal-soft.git] / cmake / bin2h.script.cmake
blob1438fde29f26c248fcfd196c8ce1f2178a4bfa52
1 # Read the input file into 'indata', converting each byte to a pair of hex
2 # characters
3 file(READ "${INPUT_FILE}" indata HEX)
5 # For each pair of characters, indent them and prepend the 0x prefix, and
6 # append a comma separateor.
7 # TODO: Prettify this. Should group a number of bytes per line instead of one
8 # per line.
9 string(REGEX REPLACE "(..)" "    0x\\1,\n" output "${indata}")
11 # Write the list of hex chars to the output file in a const byte array
12 file(WRITE "${OUTPUT_FILE}"
13     "const unsigned char ${VARIABLE_NAME}[] = {\n${output}};\n")