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.
16 lines
484 B
16 lines
484 B
4 years ago
|
# pseudo find_module
|
||
|
|
||
|
if (UseComponents_REQUIRE_VARS)
|
||
|
set(FOOBAR TRUE)
|
||
|
set(REQUIRED_VARS REQUIRED_VARS FOOBAR)
|
||
|
endif()
|
||
|
|
||
|
set (UseComponents_Comp1_FOUND TRUE)
|
||
|
set (UseComponents_Comp2_FOUND TRUE)
|
||
|
set (UseComponents_Comp3_FOUND FALSE)
|
||
|
|
||
|
include(FindPackageHandleStandardArgs)
|
||
|
find_package_handle_standard_args(UseComponents ${REQUIRED_VARS}
|
||
|
VERSION_VAR Pseudo_VERSION
|
||
|
HANDLE_COMPONENTS)
|