Files
2026-04-14 10:51:06 +01:00

10 lines
167 B
CMake

set(FILES "@OUT@")
if(WIN32 OR APPLE)
foreach(f ${FILES})
if(NOT EXISTS "${f}")
message(SEND_ERROR "${f} was not found")
endif()
endforeach()
endif()