File: CopyFiles.cmake

package info (click to toggle)
scap-security-guide 0.1.76-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 110,644 kB
  • sloc: xml: 241,883; sh: 73,777; python: 32,527; makefile: 27
file content (5 lines) | stat: -rw-r--r-- 224 bytes parent folder | download
1
2
3
4
5
# This script is used to overcome copy limitations of cmake 2.8.12
file(GLOB CSOURCE ${SOURCE})
foreach(file_to_copy ${CSOURCE})
    execute_process(COMMAND "${CMAKE_COMMAND}" -E copy ${file_to_copy} "${DEST}")
endforeach()