summaryrefslogtreecommitdiff
path: root/meshmc/cmake/UnitTest/generate_test_data.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'meshmc/cmake/UnitTest/generate_test_data.cmake')
-rw-r--r--meshmc/cmake/UnitTest/generate_test_data.cmake23
1 files changed, 23 insertions, 0 deletions
diff --git a/meshmc/cmake/UnitTest/generate_test_data.cmake b/meshmc/cmake/UnitTest/generate_test_data.cmake
new file mode 100644
index 0000000000..d0bd4ab12e
--- /dev/null
+++ b/meshmc/cmake/UnitTest/generate_test_data.cmake
@@ -0,0 +1,23 @@
+# Copy files from source directory to destination directory, substituting any
+# variables. Create destination directory if it does not exist.
+
+function(configure_files srcDir destDir)
+ make_directory(${destDir})
+
+ file(GLOB templateFiles RELATIVE ${srcDir} ${srcDir}/*)
+ foreach(templateFile ${templateFiles})
+ set(srcTemplatePath ${srcDir}/${templateFile})
+ if(NOT IS_DIRECTORY ${srcTemplatePath})
+ configure_file(
+ ${srcTemplatePath}
+ ${destDir}/${templateFile}
+ @ONLY
+ NEWLINE_STYLE LF
+ )
+ else()
+ configure_files("${srcTemplatePath}" "${destDir}/${templateFile}")
+ endif()
+ endforeach()
+endfunction()
+
+configure_files(${SOURCE} ${DESTINATION}) \ No newline at end of file