We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8075b23 commit 3292d05Copy full SHA for 3292d05
targets/TARGET_STM/TARGET_STM32G4/TARGET_STM32G431xB/CMakeLists.txt
@@ -2,6 +2,7 @@
2
# SPDX-License-Identifier: Apache-2.0
3
4
add_subdirectory(TARGET_NUCLEO_G431KB EXCLUDE_FROM_ALL)
5
+add_subdirectory(TARGET_NUCLEO_G431RB EXCLUDE_FROM_ALL)
6
7
if(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
8
set(STARTUP_FILE TOOLCHAIN_GCC_ARM/startup_stm32g431xx.S)
targets/TARGET_STM/TARGET_STM32G4/TARGET_STM32G431xB/TARGET_NUCLEO_G431RB/CMakeLists.txt
@@ -0,0 +1,16 @@
1
+# Copyright (c) 2021 ARM Limited. All rights reserved.
+# SPDX-License-Identifier: Apache-2.0
+
+add_library(NUCLEO_G431RB INTERFACE)
+target_sources(NUCLEO_G431RB
+ INTERFACE
+ PeripheralPins.c
9
+)
10
11
+target_include_directories(NUCLEO_G431RB
12
13
+ .
14
15
16
+target_link_libraries(NUCLEO_G431RB INTERFACE STM32G431xB)
0 commit comments