summaryrefslogtreecommitdiffstats
path: root/Tests/ExportImport/Import/A/check_testLib1_genex.cmake
blob: 7c0265248ba5f6649094d0a98fe85a7bd3e69fe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
foreach(f
    "${testLib1}.genex"
    "${prefix}/doc/testLib1file1.txt"
    "${prefix}/doc/testLib1file2.txt"
    )
  if(EXISTS "${f}")
    message(STATUS "'${f}' exists!")
  else()
    message(FATAL_ERROR "Missing file:\n ${f}")
  endif()
endforeach()