-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.cmake.in
38 lines (25 loc) · 1.02 KB
/
Config.cmake.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
##############################################################
# Debug prints
##############################################################
message("CMAKE_PREFIX_PATH: ${CMAKE_PREFIX_PATH}")
##############################################################
# CMake modules and macro files
##############################################################
##############################################################
# Dependency Handling
##############################################################
############
# Components
############
set(_wl_supported_components core)
foreach(_comp ${wl_FIND_COMPONENTS})
if (NOT _comp IN_LIST _wl_supported_components)
set(wl_FOUND False)
set(wl_NOT_FOUND_MESSAGE "Unsupported component: ${_comp}")
endif()
include("${CMAKE_CURRENT_LIST_DIR}/wl${_comp}Targets.cmake")
endforeach()
get_filename_component(WL_CONFIG_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
message(STATUS "Found wl: ${WL_CONFIG_DIR} (found version ${wl_VERSION})")