File: ConfigureFiles.cmake

package info (click to toggle)
veyon 4.9.5%2Brepack1-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 14,032 kB
  • sloc: cpp: 51,739; ansic: 7,307; python: 228; makefile: 222; sh: 48
file content (7 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
macro(configure_files)
	foreach(f ${ARGN})
		string(REPLACE ".in" "" OUT_FILE "${f}")
		configure_file(${CMAKE_CURRENT_SOURCE_DIR}/${f} ${CMAKE_CURRENT_BINARY_DIR}/${OUT_FILE} @ONLY)
	endforeach()
endmacro()