summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/emscripten/CMake_catFiles.cmake
blob: c637ea24fcfd7c75010e7b2bf71056c19f40acc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
if(NOT unc_targetfile)
    MESSAGE(FATAL_ERROR "unc_targetfile param not defined")
endif()

function(cat IN_FILE OUT_FILE)
  file(READ ${IN_FILE} CONTENTS)
  file(APPEND ${OUT_FILE} "${CONTENTS}")
endfunction()


SET(unc_tmpfile "${unc_targetfile}_.tmp")

file(WRITE "${unc_tmpfile}" "")

cat("${CMAKE_CURRENT_LIST_DIR}/prefix_file" "${unc_tmpfile}")
cat("${unc_targetfile}" "${unc_tmpfile}")
cat("${CMAKE_CURRENT_LIST_DIR}/postfix_file"  "${unc_tmpfile}")

file(RENAME "${unc_tmpfile}" "${unc_targetfile}")