Skip to content
Snippets Groups Projects
Commit 59b33566 authored by Fabian Tërnava's avatar Fabian Tërnava
Browse files

updated mongocxx includes to deactivate target if not available

parent 41b1e4a1
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,11 @@ set(LIB_NAME armem)
armarx_component_set_name("${LIB_NAME}")
armarx_set_target("Library: ${LIB_NAME}")
find_package(libmongocxx REQUIRED)
find_package(libbsoncxx REQUIRED)
find_package(libmongocxx QUIET)
armarx_build_if(libmongocxx_FOUND "libmongocxx not available. Please use the installation script in RobotAPI/etc/mongocxx to install libmongocxx and libbsoncxx.")
find_package(libbsoncxx QUIET)
armarx_build_if(libbsoncxx_FOUND "libbsoncxx not available. Please use the installation script in RobotAPI/etc/mongocxx to install libmongocxx and libbsoncxx.")
#message("LIBMONGOCXX:")
#message("${LIBMONGOCXX_FOUND}")
......@@ -218,15 +221,26 @@ set(LIB_HEADERS
)
armarx_add_library("${LIB_NAME}" "${LIB_FILES}" "${LIB_HEADERS}" "${LIBS}")
armarx_enable_aron_file_generation_for_target(
TARGET_NAME
${LIB_NAME}
armarx_add_library(
LIB_NAME
"${LIB_NAME}"
SOURCES
"${LIB_FILES}"
HEADERS
"${LIB_HEADERS}"
LIBS
"${LIBS}"
ARON_FILES
aron/MemoryID.xml
)
)
#armarx_enable_aron_file_generation_for_target(
# TARGET_NAME
# ${LIB_NAME}
# ARON_FILES
# aron/MemoryID.xml
#)
add_library(RobotAPI::armem ALIAS "${LIB_NAME}")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment