summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/ObjectLibrary/check_object_files.cmake
blob: 3c34229ff5dcf0dc1d81f0b5f638c472ad6fc615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

if (NOT TARGET_OBJECTS)
  message(SEND_ERROR "Object not passed as -DTARGET_OBJECTS")
endif()

foreach(objlib_file IN LISTS objects)
  message(STATUS "objlib_file: =${objlib_file}=")

  set(file_exists False)
  if (EXISTS "${objlib_file}")
    set(file_exists True)
  endif()

  if (NOT file_exists)
    message(SEND_ERROR "File \"${objlib_file}\" does not exist!${tried}")
  endif()
endforeach()