fmerge.cmake 524 B

12345678910111213141516171819
  1. # SPDX-License-Identifier: Apache-2.0
  2. # Merges a list of files into a destination file.
  3. # Usage: list of files as arguments, first argument is the destination file
  4. MATH(EXPR ARGC "${CMAKE_ARGC}-1")
  5. # First 3 arguments are "cmake", "-P", and "process.cmake"
  6. if( ${CMAKE_ARGC} LESS 5)
  7. message(FATAL_ERROR "Not enough arguments")
  8. endif()
  9. set(DEST_FILE ${CMAKE_ARGV3})
  10. # Empty the file
  11. file(REMOVE ${DEST_FILE})
  12. foreach(i RANGE 4 ${ARGC})
  13. file(READ ${CMAKE_ARGV${i}} BUF)
  14. file(APPEND ${DEST_FILE} ${BUF})
  15. endforeach()