Skip to content

Commit

Permalink
fix(meson): revert to building FreeRTOS with app
Browse files Browse the repository at this point in the history
Building FreeRTOS as a standalone library causes issues with
application. Revert for now.
  • Loading branch information
hashemmm96 committed Oct 25, 2023
1 parent 6d97d24 commit 81ec7fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions libs/freertos-config/meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,2 @@
freertos_config_inc = include_directories('include')

freertos_lib = library(
'freertos',
[files('src' / 'freertos-config.c'), freertos_src],
include_directories: [freertos_inc, freertos_config_inc],
)
freertos_config_src = files('src' / 'freertos-config.c')
2 changes: 1 addition & 1 deletion libs/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ common_libs_src = [
# third-party
drivers_src,
freertos_src,
freertos_config_src,
]

# Convenience include dir list
Expand All @@ -33,7 +34,6 @@ common_libs_inc = [

common_libs = [
# third-party
freertos_lib,
littlefs_lib,
]

Expand Down

0 comments on commit 81ec7fb

Please sign in to comment.