-
Notifications
You must be signed in to change notification settings - Fork 3
/
cppdomConfig.cmake.in
54 lines (46 loc) · 2.05 KB
/
cppdomConfig.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# - Config file for the cppdom package
# It defines the following variables
# cppdom_INCLUDE_DIRS - include directories for cppdom
# cppdom_LIBRARIES - libraries to link against
@PACKAGE_INIT@
# These are IMPORTED targets created by cppdomLibraryDepends.cmake
set(cppdom_LIBRARIES "cppdom" )
# Compute paths
# get_filename_component(cppdom_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
if(EXISTS "${PACKAGE_PREFIX_DIR}/CMakeCache.txt")
# In build tree
include("${PACKAGE_PREFIX_DIR}/lib/cppdomBuildTreeSettings.cmake")
# Our library dependencies (contains definitions for IMPORTED targets)
include("${PACKAGE_PREFIX_DIR}/lib/cppdomLibraryDepends.cmake")
else()
set_and_check(cppdom_INCLUDE_DIRS "${PACKAGE_PREFIX_DIR}/@INCLUDE_DIR@")
# The cppdom targets file.
if(EXISTS "${PACKAGE_PREFIX_DIR}/lib/cppdom-targets.cmake")
include("${PACKAGE_PREFIX_DIR}/lib/cppdom-targets.cmake")
endif()
endif()
# The location of the Usecppdom.cmake file.
set(cppdom_USE_FILE "${PACKAGE_PREFIX_DIR}/lib/Usecppdom.cmake")
# - Config file for the cppdom package
# It defines the following variables
# cppdom_INCLUDE_DIRS - include directories for cppdom
# cppdom_LIBRARIES - libraries to link against
@PACKAGE_INIT@
# These are IMPORTED targets created by cppdomLibraryDepends.cmake
set(cppdom_LIBRARIES "cppdom" )
# Compute paths
# get_filename_component(cppdom_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
if(EXISTS "${PACKAGE_PREFIX_DIR}/CMakeCache.txt")
# In build tree
include("${PACKAGE_PREFIX_DIR}/lib/cppdomBuildTreeSettings.cmake")
# Our library dependencies (contains definitions for IMPORTED targets)
include("${PACKAGE_PREFIX_DIR}/lib/cppdomLibraryDepends.cmake")
else()
set_and_check(cppdom_INCLUDE_DIRS "${PACKAGE_PREFIX_DIR}/@INCLUDE_DIR@")
# The cppdom targets file.
if(EXISTS "${PACKAGE_PREFIX_DIR}/lib/cppdom-targets.cmake")
include("${PACKAGE_PREFIX_DIR}/lib/cppdom-targets.cmake")
endif()
endif()
# The location of the Usecppdom.cmake file.
set(cppdom_USE_FILE "${PACKAGE_PREFIX_DIR}/lib/Usecppdom.cmake")