Skip to content

Commit 9cb63de

Browse files
committed
Fix build
1 parent 3343b3e commit 9cb63de

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/daemon/engine/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ target_link_libraries(ocvsmd_engine
6464
)
6565
if (${PLATFORM_OS_TYPE} STREQUAL "linux")
6666
target_sources(ocvsmd_engine
67-
platform/can/socketcan.c
67+
PRIVATE platform/can/socketcan.c
6868
)
6969
target_link_libraries(ocvsmd_engine
7070
PUBLIC canard

src/daemon/engine/cyphal/transport_helpers.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <spdlog/fmt/fmt.h>
1717

1818
#ifdef __linux__
19-
#include <libcyphal/transport/can/can_transport.hpp>
19+
# include <libcyphal/transport/can/can_transport.hpp>
2020
#endif
2121

2222
namespace ocvsmd

src/daemon/engine/engine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include <utility>
3535

3636
#ifdef __linux__
37-
#include "cyphal/can_transport_bag.hpp"
37+
# include "cyphal/can_transport_bag.hpp"
3838
#endif
3939

4040
namespace ocvsmd

0 commit comments

Comments
 (0)