Skip to content

Commit

Permalink
Add core FreeRTOS files
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarvis committed Oct 7, 2024
1 parent 47c113d commit 1983a48
Show file tree
Hide file tree
Showing 38 changed files with 41,204 additions and 0 deletions.
15 changes: 15 additions & 0 deletions libraries/FreeRTOS/inc/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# FreeRTOS internal cmake file. Do not use it in user top-level project

add_library(freertos_kernel_include INTERFACE)

target_include_directories(freertos_kernel_include
INTERFACE
.
# Note: DEPRECATED but still supported, may be removed in a future release.
$<$<NOT:$<TARGET_EXISTS:freertos_config>>:${FREERTOS_CONFIG_FILE_DIRECTORY}>
)

target_link_libraries(freertos_kernel_include
INTERFACE
$<$<TARGET_EXISTS:freertos_config>:freertos_config>
)
Loading

0 comments on commit 1983a48

Please sign in to comment.