Skip to content
Snippets Groups Projects
Commit 6fc1cc58 authored by Mederic Fourmy's avatar Mederic Fourmy
Browse files

[skip-ci] Specify MODULE or CONFIG in find_package

parent 02b29630
No related branches found
No related tags found
2 merge requests!35After cmake and const refactor,!34Resolve "Adapt to core CMakeLists.txt refactor"
...@@ -2,10 +2,8 @@ ...@@ -2,10 +2,8 @@
.settings/language.settings.xml .settings/language.settings.xml
.project .project
.cproject .cproject
build/
build_release/
build_debug/
bin/ bin/
build*/
lib/ lib/
gnss.found gnss.found
.vscode .vscode
......
...@@ -76,7 +76,7 @@ ENDIF() ...@@ -76,7 +76,7 @@ ENDIF()
option(_WOLF_TRACE "Enable wolf tracing macro" ON) option(_WOLF_TRACE "Enable wolf tracing macro" ON)
# ============ DEPENDENCIES ============ # ============ DEPENDENCIES ============
FIND_PACKAGE(wolfcore REQUIRED) FIND_PACKAGE(wolfcore REQUIRED CONFIG)
FIND_PACKAGE(gnss_utils REQUIRED) FIND_PACKAGE(gnss_utils REQUIRED)
# ============ CONFIG.H ============ # ============ CONFIG.H ============
...@@ -237,7 +237,7 @@ INSTALL(DIRECTORY ${SPDLOG_INCLUDE_DIRS} DESTINATION "include/iri-algorithms/") ...@@ -237,7 +237,7 @@ INSTALL(DIRECTORY ${SPDLOG_INCLUDE_DIRS} DESTINATION "include/iri-algorithms/")
export(PACKAGE ${PLUGIN_NAME}) export(PACKAGE ${PLUGIN_NAME})
FIND_PACKAGE(Doxygen) FIND_PACKAGE(Doxygen MODULE)
FIND_PATH(IRI_DOC_DIR doxygen.conf ${CMAKE_SOURCE_DIR}/doc/iri_doc/) FIND_PATH(IRI_DOC_DIR doxygen.conf ${CMAKE_SOURCE_DIR}/doc/iri_doc/)
IF (IRI_DOC_DIR) IF (IRI_DOC_DIR)
......
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