Skip to content

Commit ed4027e

Browse files
committed
Fix STM32F103xB target
1 parent c82c897 commit ed4027e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xB/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ elseif(${MBED_TOOLCHAIN} STREQUAL "ARM")
1111
set(LINKER_FILE TOOLCHAIN_ARM/stm32f103xb.sct)
1212
endif()
1313

14-
add_library(mbed-stm32f103xB INTERFACE)
14+
add_library(mbed-stm32f103xb INTERFACE)
1515

16-
target_sources(mbed-stm32f103xB
16+
target_sources(mbed-stm32f103xb
1717
INTERFACE
1818
system_clock.c
1919
${STARTUP_FILE}
2020
)
2121

22-
target_include_directories(mbed-stm32f103xB
22+
target_include_directories(mbed-stm32f103xb
2323
INTERFACE
2424
.
2525
)
2626

27-
mbed_set_linker_script(mbed-stm32f103xB ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
27+
mbed_set_linker_script(mbed-stm32f103xb ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
2828

29-
target_link_libraries(mbed-stm32f103xB INTERFACE mbed-stm32f1)
29+
target_link_libraries(mbed-stm32f103xb INTERFACE mbed-stm32f1)

0 commit comments

Comments
 (0)