Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ include(${CMAKE_CURRENT_LIST_DIR}/platform_specific/${CAN_PLATFORM}/config.cmake
if(NOT DEFINED LIBPARAMS_PATH)
message(SEND_ERROR "LIBPARAMS_PATH is not specified!")
endif()
include(${LIBPARAMS_PATH}/CMakeLists.txt)
if(NOT DEFINED LIBPARAMS_CMAKE)
message(SEND_WARNING "LIBPARAMS_CMAKE is not specified! Use default value 'CMakeLists.txt'.")
set(LIBPARAMS_CMAKE CMakeLists.txt)
endif()
include(${LIBPARAMS_PATH}/${LIBPARAMS_CMAKE})

set(DRONECAN_SOURCES
${DRONECAN_PLATFORM_SOURCES}
Expand Down
Loading