-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConfig.cmake.in
67 lines (53 loc) · 1.87 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
@PACKAGE_INIT@
set(_Kitimar_COMPONENTS Options Warnings Molecule CTSmarts Util CTLayout OpenBabel RDKit)
# Print required components
message(STATUS "Required Kitimar components: ${Kitimar_FIND_COMPONENTS}")
# Set Kitimar_FOUND to False if there are no components
if(NOT Kitimar_FIND_COMPONENTS)
set(Kitimar_FOUND False)
set(Kitimar_NOT_FOUND_MESSAGE "No components specified")
endif()
# Add component dependencies
set(_components Options Warnings)
foreach(_component ${Kitimar_FIND_COMPONENTS})
# Component must exist
if(NOT _component IN_LIST _Kitimar_COMPONENTS)
set(Kitimar_FOUND False)
set(Kitimar_NOT_FOUND_MESSAGE "Unsupported component: ${_component}")
endif()
# CTSmarts
if(_component STREQUAL CTSmarts)
find_package(ctre REQUIRED)
list(APPEND _components Molecule CTSmarts)
endif()
# Util
if(_component STREQUAL Util)
find_package(fmt REQUIRED)
list(APPEND _components Util)
endif()
# CTLayout
if(_component STREQUAL CTLayout)
find_package(mio REQUIRED)
list(APPEND _components Molecule Util)
endif()
# OpenBabel
if(_component STREQUAL OpenBabel)
find_package(OpenBabel3 REQUIRED)
list(APPEND _components Molecule OpenBabel)
endif()
# RDKit
if(_component STREQUAL RDKit)
set(Boost_USE_MULTITHREADED OFF)
find_package(Boost REQUIRED COMPONENTS iostreams filesystem system serialization)
find_package(RDKit REQUIRED)
list(APPEND _components Molecule RDKit)
endif()
endforeach()
# Remove duplicates
list(REMOVE_DUPLICATES _components)
# Print components including dependencies
message(STATUS "Found Kitimar components: ${_components}")
# Include component Target.cmake files
foreach(_component ${_components})
include("${CMAKE_CURRENT_LIST_DIR}/Kitimar${_component}Targets.cmake")
endforeach()