diff options
| author | hathach <[email protected]> | 2023-06-27 15:45:38 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2023-06-27 15:45:38 +0700 |
| commit | e43387abaca2044f96017481ccb00b3b68dbdc2a (patch) | |
| tree | b68c583e2c1487e4c5f82723c0b76faf52a89224 /examples/device/cdc_msc_freertos | |
| parent | bc0d6c7e92f15ba696c795f9f50b308a2281a468 (diff) | |
rework cmake with rtos support add RTOS to family_configure_device/host/dual_example()
Diffstat (limited to 'examples/device/cdc_msc_freertos')
| -rw-r--r-- | examples/device/cdc_msc_freertos/CMakeLists.txt | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/examples/device/cdc_msc_freertos/CMakeLists.txt b/examples/device/cdc_msc_freertos/CMakeLists.txt index 319ad0356..33c7a1ec0 100644 --- a/examples/device/cdc_msc_freertos/CMakeLists.txt +++ b/examples/device/cdc_msc_freertos/CMakeLists.txt @@ -30,9 +30,6 @@ target_include_directories(${PROJECT} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/src ) -# Configure compilation flags and libraries for the example... see the corresponding function -# in hw/bsp/FAMILY/family.cmake for details. -family_configure_device_example(${PROJECT}) - -# Add FreeRTOS for this example -family_add_freertos(${PROJECT}) +# Configure compilation flags and libraries for the example with FreeRTOS. +# See the corresponding function in hw/bsp/FAMILY/family.cmake for details. +family_configure_device_example(${PROJECT} freertos) |
