Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion apps/add_two_ints_service/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ endif()
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(microrosapp C CXX)

FILE(GLOB app_sources src/*.c ../../microros_extensions/libatomic.c)
FILE(GLOB app_sources src/*.c)

target_sources(app PRIVATE ${app_sources})

Expand Down
2 changes: 1 addition & 1 deletion apps/int32_publisher/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ endif()
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(microrosapp C CXX)

FILE(GLOB app_sources src/*.c ../../microros_extensions/libatomic.c)
FILE(GLOB app_sources src/*.c)

target_sources(app PRIVATE ${app_sources})

Expand Down
2 changes: 1 addition & 1 deletion apps/openmanipulator_tof/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ list(APPEND ZEPHYR_EXTRA_MODULES
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(microrosapp C CXX)

FILE(GLOB app_sources src/*.c ../../microros_extensions/libatomic.c)
FILE(GLOB app_sources src/*.c)

target_sources(app PRIVATE ${app_sources})

Expand Down
2 changes: 1 addition & 1 deletion apps/ping_pong/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ endif()
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(microrosapp C CXX)

FILE(GLOB app_sources src/*.c ../../microros_extensions/libatomic.c)
FILE(GLOB app_sources src/*.c)

target_sources(app PRIVATE ${app_sources})

Expand Down
2 changes: 1 addition & 1 deletion apps/sensors_publisher/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ endif()
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(microrosapp C CXX)

FILE(GLOB app_sources src/*.c ../../microros_extensions/libatomic.c)
FILE(GLOB app_sources src/*.c)

target_sources(app PRIVATE ${app_sources})

Expand Down
2 changes: 1 addition & 1 deletion apps/tof_ws2812/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set(BOARD_ROOT ${CMAKE_CURRENT_LIST_DIR})
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(microrosapp C CXX)

FILE(GLOB app_sources src/*.c ../../microros_extensions/libatomic.c)
FILE(GLOB app_sources src/*.c)

target_sources(app PRIVATE ${app_sources})

Expand Down
2 changes: 1 addition & 1 deletion apps/vl53l1x_tof_sensor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ list(APPEND ZEPHYR_EXTRA_MODULES
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(microrosapp C CXX)

FILE(GLOB app_sources src/*.c ../../microros_extensions/libatomic.c)
FILE(GLOB app_sources src/*.c)

target_sources(app PRIVATE ${app_sources})

Expand Down
Loading