Skip to content

Commit 96393fe

Browse files
committed
cmake/zephyr: sort the add_subdirectory() statement list
Reorder the add_subdirectory() statements to alphabetical order. There will be more entries here, so better to organize this list now. Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
1 parent 33a84ab commit 96393fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

zephyr/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,11 +198,11 @@ macro(add_local_sources_ifdef condition target)
198198
zephyr_library_sources_ifdef(${condition} ${ARGN})
199199
endmacro()
200200

201-
add_subdirectory(../src/init/ init_unused_install/)
202-
add_subdirectory(../src/ipc/ ipc_unused_install/)
203-
add_subdirectory(../src/debug/telemetry/ telemetry_unused_install/)
204201
add_subdirectory(../src/debug/debug_stream/ debug_stream_unused_install/)
202+
add_subdirectory(../src/debug/telemetry/ telemetry_unused_install/)
205203
add_subdirectory(../src/debug/tester/ debug_tester_unused_install/)
204+
add_subdirectory(../src/init/ init_unused_install/)
205+
add_subdirectory(../src/ipc/ ipc_unused_install/)
206206
add_subdirectory(../src/math/ math_unused_install/)
207207
add_subdirectory(../src/schedule/ schedule_unused_install/)
208208
add_subdirectory(test/)

0 commit comments

Comments
 (0)