no-file-arg.cmake 211 B

1234567891011
  1. include(common.cmake)
  2. set(file "")
  3. file_download()
  4. set(file "${CMAKE_CURRENT_BINARY_DIR}/input.png")
  5. if(NOT EXISTS "${file}")
  6. message(FATAL_ERROR "file not downloaded to expected path:\n ${file}")
  7. endif()