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.
12 lines
433 B
12 lines
433 B
include(apple-common.cmake)
|
|
|
|
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE NEVER)
|
|
find_package(bad-platform-capture CONFIG REQUIRED)
|
|
find_package(bad-arch-capture CONFIG REQUIRED)
|
|
|
|
# The above packages capture their own error messages.
|
|
# In real packages they would then set _FOUND to false.
|
|
# For testing here, just print the messages.
|
|
message(STATUS "${bad-platform-capture_unsupported}")
|
|
message(STATUS "${bad-arch-capture_unsupported}")
|