Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.

Commit e45ea7d

Browse files
committed
Merge branch 'master' of github.com:azurertos/getting-started
2 parents 724f3d3 + 2602d63 commit e45ea7d

5 files changed

Lines changed: 22 additions & 3 deletions

File tree

.github/workflows/STM32L4_L4+.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on:
66
paths:
77
- 'core/**'
88
- 'cmake/**'
9-
- 'STMicroelectronics/STM32L4_L4+/**'
9+
- 'STMicroelectronics/STM32L4_L4\+/**'
1010
pull_request:
1111
branches: [ master ]
1212
paths:
1313
- 'core/**'
1414
- 'cmake/**'
15-
- 'STMicroelectronics/STM32L4_L4+/**'
15+
- 'STMicroelectronics/STM32L4_L4\+/**'
1616

1717
defaults:
1818
run:
@@ -43,4 +43,3 @@ jobs:
4343
run: |
4444
cmake -Bbuild -GNinja -DCMAKE_TOOLCHAIN_FILE="../../cmake/arm-gcc-cortex-m4.cmake"
4545
cmake --build build
46-

Microchip/ATSAME54-XPRO/app/CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,10 @@ set_target_properties(${PROJECT_NAME}
3737
SUFFIX ".elf"
3838
)
3939

40+
target_include_directories(${PROJECT_NAME}
41+
PUBLIC
42+
.
43+
)
44+
4045
create_bin_output(${PROJECT_NAME})
4146
firmware_size(${PROJECT_NAME})

NXP/MIMXRT1050-EVKB/app/CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,10 @@ set_target_properties(${PROJECT_NAME}
3737
SUFFIX ".elf"
3838
)
3939

40+
target_include_directories(${PROJECT_NAME}
41+
PUBLIC
42+
.
43+
)
44+
4045
create_bin_output(${PROJECT_NAME})
4146
firmware_size(${PROJECT_NAME})

NXP/MIMXRT1060-EVK/app/CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,10 @@ set_target_properties(${PROJECT_NAME}
3737
SUFFIX ".elf"
3838
)
3939

40+
target_include_directories(${PROJECT_NAME}
41+
PUBLIC
42+
.
43+
)
44+
4045
create_bin_output(${PROJECT_NAME})
4146
firmware_size(${PROJECT_NAME})

STMicroelectronics/STM32L4_L4+/app/CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ function(create_target TARGET STARTUP LINKER)
4242
SUFFIX ".elf"
4343
)
4444

45+
target_include_directories(${TARGET}
46+
PUBLIC
47+
.
48+
)
49+
4550
create_bin_output(${TARGET})
4651
firmware_size(${TARGET})
4752
endfunction()

0 commit comments

Comments
 (0)