Skip to content

Commit ba70d17

Browse files
committed
Move source files under src directory
I don't like having many files at the top directory. Move them under src/. Signed-off-by: Yasushi SHOJI <[email protected]>
1 parent 7f49ec2 commit ba70d17

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ endif()
88

99
add_executable(demo)
1010
target_sources(demo PRIVATE
11-
main.c
12-
hooks.c
11+
src/main.c
12+
src/hooks.c
1313
)
1414

1515
add_library(freertos_config INTERFACE)

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ project('libcsp-freertos', 'c')
22

33
cc = meson.get_compiler('c')
44

5-
src = ['main.c',
6-
'hooks.c'
5+
src = ['src/main.c',
6+
'src/hooks.c'
77
]
88

99
src_freertos = ['freertos/list.c',

hooks.c renamed to src/hooks.c

File renamed without changes.

main.c renamed to src/main.c

File renamed without changes.

0 commit comments

Comments
 (0)