Skip to content

Commit

Permalink
explicit CMAKE_MODULE_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
fe-dagostino committed Sep 25, 2024
1 parent 507c8ca commit 0f3df82
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_SOURCE_D
include_directories( ${CMAKE_CURRENT_SOURCE_DIR}/include )
include_directories( ${CMAKE_CURRENT_SOURCE_DIR}/include/devices )

set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake )

# uncomment to set a default CXX standard for the external tools like clang-tidy and cppcheck
# and the targets that do not specify a standard.
Expand Down Expand Up @@ -74,7 +75,7 @@ endif()

# Fetch lock-free library and make it available as dependency
include(FetchContent)
include(cmake/lock-free.cmake)
include(lock-free)
list( APPEND EXT_LIBRARIES lock-free )

option(CSV_BUILD_EXAMPLES "Enable/Disable examples build" ON)
Expand Down

0 comments on commit 0f3df82

Please sign in to comment.