diff --git a/.gitignore b/.gitignore index d3c2b98503a75fbbc575622cd9ffc8866dae39dc..7cfb8e1a8cb6b81f302d573cf12b4bf330595f41 100644 --- a/.gitignore +++ b/.gitignore @@ -2,10 +2,8 @@ .settings/language.settings.xml .project .cproject -build/ -build_release/ -build_debug/ bin/ +build*/ lib/ gnss.found .vscode diff --git a/CMakeLists.txt b/CMakeLists.txt index 35e82596098b3bd375657ab0136ee8e007063612..5e33300bc632a1f718f45f107f7d354fbe15bc0b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -76,7 +76,7 @@ ENDIF() option(_WOLF_TRACE "Enable wolf tracing macro" ON) # ============ DEPENDENCIES ============ -FIND_PACKAGE(wolfcore REQUIRED) +FIND_PACKAGE(wolfcore REQUIRED CONFIG) FIND_PACKAGE(gnss_utils REQUIRED) # ============ CONFIG.H ============ @@ -237,7 +237,7 @@ INSTALL(DIRECTORY ${SPDLOG_INCLUDE_DIRS} DESTINATION "include/iri-algorithms/") export(PACKAGE ${PLUGIN_NAME}) -FIND_PACKAGE(Doxygen) +FIND_PACKAGE(Doxygen MODULE) FIND_PATH(IRI_DOC_DIR doxygen.conf ${CMAKE_SOURCE_DIR}/doc/iri_doc/) IF (IRI_DOC_DIR)