Skip to content

Commit c82c897

Browse files
committed
Fix STM32F072xB target
1 parent f2f927e commit c82c897

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

targets/TARGET_STM/TARGET_STM32F0/TARGET_STM32F072xB/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/stm32f072xb.sct)
1212
endif()
1313

14-
add_library(mbed-stm32f072xB INTERFACE)
14+
add_library(mbed-stm32f072xb INTERFACE)
1515

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

22-
target_include_directories(mbed-stm32f072xB
22+
target_include_directories(mbed-stm32f072xb
2323
INTERFACE
2424
.
2525
)
2626

27-
mbed_set_linker_script(mbed-stm32f072xB ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
27+
mbed_set_linker_script(mbed-stm32f072xb ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
2828

29-
target_link_libraries(mbed-stm32f072xB INTERFACE mbed-stm32f0)
29+
target_link_libraries(mbed-stm32f072xb INTERFACE mbed-stm32f0)

0 commit comments

Comments
 (0)