AllVerifyInterfaceHeaderSets-all_verify_interface_header_sets-Debug-build-check.cmake 600 B

12345678910
  1. # A custom command is used to copy the header file from the source directory to
  2. # the binary directory. If the verification target was built, the custom
  3. # command should have been executed, and the file should be present in the
  4. # binary directory.
  5. if(NOT EXISTS "${RunCMake_TEST_BINARY_DIR}/dir1/lib1.h")
  6. string(APPEND RunCMake_TEST_FAILED "${RunCMake_TEST_BINARY_DIR}/dir1/lib1.h should exist but it does not\n")
  7. endif()
  8. if(NOT EXISTS "${RunCMake_TEST_BINARY_DIR}/dir2/lib2.h")
  9. string(APPEND RunCMake_TEST_FAILED "${RunCMake_TEST_BINARY_DIR}/dir2/lib2.h should exist but it does not\n")
  10. endif()