Skip to content

Commit 92bb656

Browse files
committed
Adding new files.
1 parent 0c544f0 commit 92bb656

14 files changed

+5268203
-0
lines changed

CMakeLists.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
cmake_minimum_required(VERSION 3.15)
2+
3+
project(supplemental_test_files VERSION 0.1.0 LANGUAGES CXX)
4+
5+
set(SUPPLEMENTAL_TEST_DATA_DIR ${CMAKE_CURRENT_BINARY_DIR})
6+
7+
8+
# Copy static files to the build dir so they live alongside the generated ones
9+
file(GLOB_RECURSE example_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} data/*.txt)
10+
foreach(example_file ${example_files})
11+
configure_file(${example_file} ${example_file} COPYONLY)
12+
endforeach(example_file)

0 commit comments

Comments
 (0)