diff options
author | Oxore <oxore@protonmail.com> | 2023-03-06 11:30:08 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-03-06 11:30:08 +0300 |
commit | dfcf63dded68e7bf1eea2112feb6e993d75c9907 (patch) | |
tree | 0d1e3e5f3d00f0f550e3fc1cfc110907cb7ee6ce /CMakeLists.txt | |
parent | 5e565f35686b41ae5b5a2125213e01d8aa9d0e61 (diff) |
Reduce include path pollution
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 113b3a1..19748b0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -57,7 +57,7 @@ set(nixie_clock_sources "third_party/STM32F0xx_StdPeriph_Driver/src/stm32f0xx_adc.c" #"third_party/STM32F0xx_StdPeriph_Driver/src/stm32f0xx_i2c.c" "third_party/STM32F0xx_StdPeriph_Driver/src/stm32f0xx_usart.c" - "third_party/Time/time.c" + "app/time/time.c" "app/indicate/indicate_modes_task.c" "app/button/button_handler.c" "app/button/button_task.c" @@ -95,15 +95,8 @@ target_include_directories(${PROJECT_NAME} PRIVATE "third_party/FreeRTOS/include" "third_party/TouchSense" "third_party/STM32F0xx_StdPeriph_Driver/inc" - "third_party/Time" + "app/time" "app" - "app/nixie_driver" - "app/ltimers" - "app/head_task" - "app/indicate" - "app/light_sensor" - "app/button" - "app/led_driver" "app/platform/stm32f0-gcc/freertos" ) |