File tree Expand file tree Collapse file tree 5 files changed +9
-0
lines changed
Expand file tree Collapse file tree 5 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 11[submodule "external/librobotcontrol "]
22 path = external/librobotcontrol
33 url = [email protected] :KPI-Rover/external_librobotcontrol.git 4+ [submodule "external/glog "]
5+ path = external/glog
6+ url = https://github.com/google/glog.git
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ project(kpi_rover_ecu)
44if (BUILD_VARIANT STREQUAL "Target" )
55 option (BUILD_LIBROBOT_CONTROL "Build librobotcontrol using original Makefile" ON )
66 add_subdirectory (external/librobotcontrol)
7+ add_subdirectory (external/glog)
78 add_subdirectory (src/kpi_rover_ecu)
89endif ()
910
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ target_link_libraries(${PROJECT_NAME} PRIVATE
2020 kpi_rover_ecu_core
2121 Threads::Threads
2222 robotcontrol
23+ glog
2324)
2425
2526target_include_directories (${PROJECT_NAME} PRIVATE
Original file line number Diff line number Diff line change @@ -15,4 +15,7 @@ add_library(kpi_rover_ecu_core STATIC
1515target_include_directories (kpi_rover_ecu_core PUBLIC
1616 ${CMAKE_SOURCE_DIR} /src/kpi_rover_ecu/include
1717 ${CMAKE_SOURCE_DIR} /external/librobotcontrol/library/include
18+ ${CMAKE_SOURCE_DIR} /external/glog/
1819)
20+
21+ target_link_libraries (kpi_rover_ecu_core PUBLIC glog)
You can’t perform that action at this time.
0 commit comments