From 7a2e206ec310a0df806becce00940ab41c96bdac Mon Sep 17 00:00:00 2001 From: Scott Charlton Date: Mon, 2 Dec 2019 09:30:18 -0700 Subject: [PATCH] Closes https://gitlab.cr.usgs.gov/coupled/IPhreeqc/issues/6 --- examples/c/advect/CMakeLists.txt | 4 ++++ examples/cpp/advect/CMakeLists.txt | 4 ++++ examples/fortran/advect/CMakeLists.txt | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/examples/c/advect/CMakeLists.txt b/examples/c/advect/CMakeLists.txt index dba32ed4..8fd83f8a 100644 --- a/examples/c/advect/CMakeLists.txt +++ b/examples/c/advect/CMakeLists.txt @@ -1,6 +1,10 @@ # project project(example_advect_c C) +configure_file(phreeqc.dat phreeqc.dat COPYONLY) + +configure_file(ic ic COPYONLY) + # files SET(C_Advect_Files advect.c diff --git a/examples/cpp/advect/CMakeLists.txt b/examples/cpp/advect/CMakeLists.txt index e5fece97..3ccaeb64 100644 --- a/examples/cpp/advect/CMakeLists.txt +++ b/examples/cpp/advect/CMakeLists.txt @@ -1,6 +1,10 @@ # project project(example_advect_cpp CXX) +configure_file(phreeqc.dat phreeqc.dat COPYONLY) + +configure_file(ic ic COPYONLY) + # files SET(CPP_Advect_Files advect.cpp diff --git a/examples/fortran/advect/CMakeLists.txt b/examples/fortran/advect/CMakeLists.txt index c4acd8da..2b5dc31e 100644 --- a/examples/fortran/advect/CMakeLists.txt +++ b/examples/fortran/advect/CMakeLists.txt @@ -1,6 +1,10 @@ # project if (IPHREEQC_FORTRAN_TESTING AND IPHREEQC_ENABLE_MODULE) project(example_advect_f90 Fortran) + + configure_file(phreeqc.dat phreeqc.dat COPYONLY) + + configure_file(ic ic COPYONLY) endif() # files