You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
9 years ago
|
set(framework-dir "${RunCMake_TEST_BINARY_DIR}/Framework.framework")
|
||
|
set(framework-resources "${framework-dir}/Resources")
|
||
|
set(framework-resource-file "${framework-dir}/res.txt")
|
||
|
set(framework-library "${framework-dir}/Framework")
|
||
|
set(framework-versions "${framework-dir}/Versions")
|
||
|
set(plist-file "${framework-dir}/Info.plist")
|
||
|
set(framework-header "${framework-dir}/Headers/foo.h")
|
||
|
|
||
|
if(NOT IS_DIRECTORY ${framework-dir})
|
||
|
message(SEND_ERROR "Framework not found at ${framework-dir}")
|
||
|
endif()
|
||
|
|
||
|
if(NOT EXISTS ${plist-file})
|
||
|
message(SEND_ERROR "plist file not found at ${plist-file}")
|
||
|
endif()
|
||
|
|
||
|
if(NOT EXISTS ${framework-library})
|
||
|
message(SEND_ERROR "Framework library not found at ${framework-library}")
|
||
|
endif()
|
||
|
|
||
|
if(NOT EXISTS ${framework-resource-file})
|
||
|
message(SEND_ERROR "Framework resource file not found at ${framework-resource-file}")
|
||
|
endif()
|
||
|
|
||
|
if(EXISTS ${framework-versions})
|
||
|
message(SEND_ERROR "Framework versions found at ${framework-versions}")
|
||
|
endif()
|
||
|
|
||
|
if(EXISTS ${framework-resources})
|
||
|
message(SEND_ERROR "Framework Resources found at ${framework-resources}")
|
||
|
endif()
|
||
|
|
||
|
if(NOT EXISTS ${framework-header})
|
||
|
message(SEND_ERROR "Framework headers not found at ${framework-header}")
|
||
|
endif()
|