Skip to content

Commit 9c9d833

Browse files
committed
CMake Maxim: fix some errors with renames
1 parent 351d674 commit 9c9d833

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

targets/TARGET_Maxim/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ add_subdirectory(TARGET_MAX32620C EXCLUDE_FROM_ALL)
66
add_subdirectory(TARGET_MAX32625 EXCLUDE_FROM_ALL)
77
add_subdirectory(TARGET_MAX32630 EXCLUDE_FROM_ALL)
88

9+
add_library(mbed-maxim INTERFACE)
910

1011
target_include_directories(mbed-maxim
1112
INTERFACE

targets/TARGET_Maxim/TARGET_MAX32620C/TARGET_SDT32620B/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
add_library(mbed-sdt32620b INTERFACE)
55

6-
target_include_directories(mbed-max32625
6+
target_include_directories(mbed-sdt32620b
77
INTERFACE
88
.
99
)

targets/TARGET_Maxim/TARGET_MAX32625/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ elseif(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
1212
set(STARTUP_FILE device/TOOLCHAIN_GCC_ARM/startup_max32625.S)
1313
endif()
1414

15+
add_library(mbed-max32625 INTERFACE)
16+
1517
target_include_directories(mbed-max32625
1618
INTERFACE
1719
.

targets/TARGET_Maxim/TARGET_MAX32630/TARGET_MAX32630FTHR/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ add_library(mbed-max32630fthr INTERFACE)
55

66
target_include_directories(mbed-max32630fthr
77
INTERFACE
8-
TARGET_MAX32630FTHR
8+
.
99
)
1010

1111
target_sources(mbed-core
1212
INTERFACE
13-
TARGET_MAX32630FTHR/low_level_init.c
13+
low_level_init.c
1414
)
1515

1616
target_link_libraries(mbed-max32630fthr INTERFACE mbed-max32630)

0 commit comments

Comments
 (0)