-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
165 lines (128 loc) · 5.58 KB
/
CMakeLists.txt
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
cmake_minimum_required(VERSION 3.0.2)
project(knowledge_representation)
set(CMAKE_CXX_STANDARD 11)
find_package(catkin REQUIRED COMPONENTS
roslint
)
find_package(Boost REQUIRED COMPONENTS python)
if("$ENV{ROS_DISTRO}" STREQUAL "kinetic" OR "$ENV{ROS_DISTRO}" STREQUAL "melodic")
find_package(PythonLibs 2.7 REQUIRED)
else()
# Relaxed to support Debian Buster
find_package(PythonLibs 3.7 REQUIRED)
endif()
find_package(PostgreSQL)
find_library(libpqxx NAMES pqxx)
find_library(mysqlcppconn NAMES libmysqlcppconn8.so)
# Check to see if we have the right version of MySQL Cpp Connector installed
if(POSTGRESQL_FOUND OR libpqxx)
set(POSTGRES_AVAILABLE true)
set(DB_INCLUDES ${PostgreSQL_INCLUDE_DIRS})
set(DB_LIBS ${PostgreSQL_LIBRARIES} ${libpqxx})
set(EXPORTED_DEPEND "")
add_definitions(-DUSE_POSTGRESQL)
# Needed to support older version of libpqxx that ships in Debian Buster
add_definitions(-DPQXX_HIDE_EXP_OPTIONAL)
elseif(mysqlcppconn)
message(WARNING "PostgreSQL not found. Using incomplete MySQL implementation.")
set(MYSQL_AVAILABLE true)
find_path(DB_INCLUDES mysqlx/xdevapi.h HINT /usr/local/mysql/connector-c++-8.0/include)
set(mysqlcppconn_INCLUDE_DIRS ${DB_INCLUDES})
set(mysqlcppconn_LIBRARIES ${mysqlcppconn})
set(DB_LIBS ${mysqlcppconn})
set(EXPORTED_DEPEND mysqlcppconn)
add_definitions(-DUSE_MYSQL)
else()
message(FATAL_ERROR "Neither MySQL nor PostgreSQL found. Please install one.")
endif()
catkin_python_setup()
catkin_package(
INCLUDE_DIRS include
LIBRARIES knowledge_rep ${DB_LIBS}
CATKIN_DEPENDS
DEPENDS ${EXPORTED_DEPEND}
)
include_directories(
${Boost_INCLUDE_DIRS}
${catkin_INCLUDE_DIRS}
${DB_INCLUDES}
include
${PYTHON_INCLUDE_DIRS}
)
if ("${MYSQL_AVAILABLE}" OR "${POSTGRES_AVAILABLE}")
set(INTERFACE_HEADER_PATH ${PROJECT_SOURCE_DIR}/include/knowledge_representation/LongTermMemoryConduit.h)
if (MYSQL_AVAILABLE)
set(DB_SOURCES src/libknowledge_rep/LongTermMemoryConduitMySQL.cpp)
set(DB_BACKEND MySQL)
elseif (POSTGRES_AVAILABLE)
set(DB_SOURCES src/libknowledge_rep/LongTermMemoryConduitPostgreSQL.cpp)
set(DB_BACKEND PostgreSQL)
endif()
# This header file imports the correct backend. Lets library users avoid
# depending on a particular backend
configure_file(${INTERFACE_HEADER_PATH}.in ${INTERFACE_HEADER_PATH})
add_library(knowledge_rep
${DB_SOURCES}
src/libknowledge_rep/convenience.cpp
)
target_link_libraries(knowledge_rep ${DB_LIBS} ${catkin_LIBRARIES})
add_library(_libknowledge_rep_wrapper_cpp src/libknowledge_rep/python_wrapper.cpp)
target_link_libraries(_libknowledge_rep_wrapper_cpp
knowledge_rep
${DB_LIBS}
${Boost_LIBRARIES}
${catkin_LIBRARIES})
set_target_properties(_libknowledge_rep_wrapper_cpp PROPERTIES
PREFIX ""
LIBRARY_OUTPUT_DIRECTORY ${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_PYTHON_DESTINATION}
)
catkin_add_env_hooks(${PROJECT_NAME} SHELLS bash zsh DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/env-hooks)
### INSTALL
install(TARGETS knowledge_rep _libknowledge_rep_wrapper_cpp
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION})
catkin_install_python(PROGRAMS scripts/ikr scripts/populate_with_knowledge scripts/populate_with_map scripts/show_me scripts/create_door_pgm
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
install(PROGRAMS scripts/configure_postgresql.sh
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}/scripts)
install(DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION})
install(DIRECTORY sql/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/sql)
### LINTING
file(GLOB_RECURSE ${PROJECT_NAME}_CPP_SRC
RELATIVE ${PROJECT_SOURCE_DIR} src/lib${PROJECT_NAME}/*.cpp src/libknowledge_rep/*.h include/${PROJECT_NAME}/*.h test/*.cpp)
set(ROSLINT_CPP_OPTS "--filter=-legal/copyright,-build/header_guard,-runtime/references,-build/c++11,-whitespace/braces")
roslint_cpp(${${PROJECT_NAME}_CPP_SRC})
# Lint Python modules for PEP8 compatibility
file(GLOB_RECURSE ${PROJECT_NAME}_PY_SCRIPTS
RELATIVE ${PROJECT_SOURCE_DIR} scripts/populate_* scripts/test_ltmc scripts/dump_to_owl)
# List FILTER isn't supported in 16.04's CMake
# list(FILTER ${PROJECT_NAME}_PY_SCRIPTS EXCLUDE REGEX ".*.sh")
file(GLOB_RECURSE ${PROJECT_NAME}_PY_SRC
RELATIVE ${PROJECT_SOURCE_DIR} src/${PROJECT_NAME}/*.py)
set(ROSLINT_PYTHON_OPTS "--max-line-length=120")
roslint_python(${${PROJECT_NAME}_PY_SCRIPTS})
roslint_python(${${PROJECT_NAME}_PY_SRC})
### TEST TARGETS
if(CATKIN_ENABLE_TESTING)
catkin_add_gtest(test_ltmc test/ltmc.cpp test/entity.cpp test/concept_instance.cpp test/map_types.cpp)
target_link_libraries(test_ltmc knowledge_rep ${catkin_LIBRARIES})
add_dependencies(test_ltmc _libknowledge_rep_wrapper_cpp)
catkin_add_nosetests(test/ltmc.py)
catkin_add_nosetests(test/loaders.py)
endif()
endif ()
### DOCS
find_package(Doxygen)
if(DOXYGEN_FOUND)
set(doxyfile_in ${CMAKE_CURRENT_SOURCE_DIR}/doc/Doxyfile)
configure_file(${doxyfile_in} ${doxyfile} @ONLY)
add_custom_target(doc
COMMAND ${CMAKE_COMMAND} -E echo_append "Building API Documentation..."
COMMAND ${DOXYGEN_EXECUTABLE} ${doxyfile}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/doc
COMMAND ${CMAKE_COMMAND} -E echo_append "API Documentation built in ${CMAKE_CURRENT_SOURCE_DIR}/doc"
VERBATIM)
endif()