# Note about the use of wildcard in CMakeLists.txt: CMake dont't know
# when new files is added. You need to re-run CMake manually to
# regenerate a build system incorporating the new file.
# YOU MUST ALSO TOUCH A CMAKE CONFIGURATION FILE WHEN YOU PUSH THE NEW
# FILE TO FORCE THE RECONFIGURE ON OTHER PEOPLE'S BUILDS.
FILE(
  GLOB xmlFiles
  RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
  *.xml
)

# disabling a test
LIST(
  REMOVE_ITEM
  xmlFiles
  default_e2d.xml
  aggregation2.xml
  aggregation5_np4.xml
)

TRIBITS_COPY_FILES_TO_BINARY_DIR(ParameterList_kokkos_EasyParameterListInterpreter_cp SOURCE_FILES ${xmlFiles})
# touch
