File tree Expand file tree Collapse file tree 7 files changed +32
-32
lines changed Expand file tree Collapse file tree 7 files changed +32
-32
lines changed Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020 ARM Limited. All rights reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
- add_library (ARM_FM INTERFACE )
4
+ add_library (mbed-arm-fm INTERFACE )
5
5
6
6
add_subdirectory (TARGET_FVP_MPS2 EXCLUDE_FROM_ALL )
7
7
8
- target_include_directories (ARM_FM
8
+ target_include_directories (mbed-arm-fm
9
9
INTERFACE
10
10
.
11
11
)
Original file line number Diff line number Diff line change @@ -7,16 +7,16 @@ add_subdirectory(TARGET_FVP_MPS2_M3 EXCLUDE_FROM_ALL)
7
7
add_subdirectory (TARGET_FVP_MPS2_M4 EXCLUDE_FROM_ALL )
8
8
add_subdirectory (TARGET_FVP_MPS2_M7 EXCLUDE_FROM_ALL )
9
9
10
- add_library (FVP_MPS2 INTERFACE )
10
+ add_library (mbed-fvp-mps2 INTERFACE )
11
11
12
- target_include_directories (FVP_MPS2
12
+ target_include_directories (mbed-fvp-mps2
13
13
INTERFACE
14
14
.
15
15
drivers
16
16
SDK
17
17
)
18
18
19
- target_sources (FVP_MPS2
19
+ target_sources (mbed-fvp-mps2
20
20
INTERFACE
21
21
analogin_api.c
22
22
flash_api.c
Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020 ARM Limited. All rights reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
- add_library(FVP_MPS2_M0 INTERFACE)
4
+ add_library(mbed-fvp-mps2-m0 INTERFACE)
5
5
6
6
if(${MBED_TOOLCHAIN} STREQUAL "ARM")
7
7
set(LINKER_FILE device/TOOLCHAIN_ARM_STD/MPS2.sct)
@@ -11,17 +11,17 @@ elseif(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
11
11
set(STARTUP_FILE device/TOOLCHAIN_GCC_ARM/startup_MPS2.S)
12
12
endif()
13
13
14
- mbed_set_linker_script(FVP_MPS2_M0 ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
14
+ mbed_set_linker_script(mbed-fvp-mps2-m0 ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
15
15
16
- target_include_directories(FVP_MPS2_M0
16
+ target_include_directories(mbed-fvp-mps2-m0
17
17
INTERFACE
18
18
device
19
19
)
20
20
21
- target_sources(FVP_MPS2_M0
21
+ target_sources(mbed-fvp-mps2-m0
22
22
INTERFACE
23
23
device/system_CMSDK_CM0.c
24
24
${STARTUP_FILE}
25
25
)
26
26
27
- target_link_libraries(FVP_MPS2_M0 INTERFACE FVP_MPS2 ARM_FM )
27
+ target_link_libraries(mbed-fvp-mps2-m0 INTERFACE mbed-fvp-mps2 mbed-arm-fm )
Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020 ARM Limited. All rights reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
- add_library(FVP_MPS2_M0P INTERFACE)
4
+ add_library(mbed-fvp-mps2-m0p INTERFACE)
5
5
6
6
if(${MBED_TOOLCHAIN} STREQUAL "ARM")
7
7
set(LINKER_FILE device/TOOLCHAIN_ARM_STD/MPS2.sct)
@@ -11,17 +11,17 @@ elseif(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
11
11
set(STARTUP_FILE device/TOOLCHAIN_GCC_ARM/startup_MPS2.S)
12
12
endif()
13
13
14
- mbed_set_linker_script(FVP_MPS2_M0P ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
14
+ mbed_set_linker_script(mbed-fvp-mps2-m0p ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
15
15
16
- target_include_directories(FVP_MPS2_M0P
16
+ target_include_directories(mbed-fvp-mps2-m0p
17
17
INTERFACE
18
18
device
19
19
)
20
20
21
- target_sources(FVP_MPS2_M0P
21
+ target_sources(mbed-fvp-mps2-m0p
22
22
INTERFACE
23
23
device/system_CMSDK_CM0plus.c
24
24
${STARTUP_FILE}
25
25
)
26
26
27
- target_link_libraries(FVP_MPS2_M0P INTERFACE FVP_MPS2 ARM_FM )
27
+ target_link_libraries(mbed-fvp-mps2-m0p INTERFACE mbed-fvp-mps2 mbed-arm-fm )
Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020 ARM Limited. All rights reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
- add_library(FVP_MPS2_M3 INTERFACE)
4
+ add_library(mbed-fvp-mps2-m3 INTERFACE)
5
5
6
6
if(${MBED_TOOLCHAIN} STREQUAL "ARM")
7
7
set(LINKER_FILE device/TOOLCHAIN_ARM_STD/MPS2.sct)
@@ -11,17 +11,17 @@ elseif(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
11
11
set(STARTUP_FILE device/TOOLCHAIN_GCC_ARM/startup_MPS2.S)
12
12
endif()
13
13
14
- mbed_set_linker_script(FVP_MPS2_M3 ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
14
+ mbed_set_linker_script(mbed-fvp-mps2-m3 ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
15
15
16
- target_include_directories(FVP_MPS2_M3
16
+ target_include_directories(mbed-fvp-mps2-m3
17
17
INTERFACE
18
18
device
19
19
)
20
20
21
- target_sources(FVP_MPS2_M3
21
+ target_sources(mbed-fvp-mps2-m3
22
22
INTERFACE
23
23
device/system_CMSDK_CM3.c
24
24
${STARTUP_FILE}
25
25
)
26
26
27
- target_link_libraries(FVP_MPS2_M3 INTERFACE FVP_MPS2 ARM_FM )
27
+ target_link_libraries(mbed-fvp-mps2-m3 INTERFACE mbed-fvp-mps2 mbed-arm-fm )
Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020 ARM Limited. All rights reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
- add_library(FVP_MPS2_M4 INTERFACE)
4
+ add_library(mbed-fvp-mps2-m4 INTERFACE)
5
5
6
- target_include_directories(FVP_MPS2_M4
6
+ target_include_directories(mbed-fvp-mps2-m4
7
7
INTERFACE
8
8
device
9
9
)
@@ -15,17 +15,17 @@ elseif(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
15
15
set(LINKER_FILE device/TOOLCHAIN_GCC_ARM/MPS2.ld)
16
16
set(STARTUP_FILE device/TOOLCHAIN_GCC_ARM/startup_MPS2.S)
17
17
endif()
18
- mbed_set_linker_script(FVP_MPS2_M4 ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
18
+ mbed_set_linker_script(mbed-fvp-mps2-m4 ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
19
19
20
- target_include_directories(FVP_MPS2_M4
20
+ target_include_directories(mbed-fvp-mps2-m4
21
21
INTERFACE
22
22
device
23
23
)
24
24
25
- target_sources(FVP_MPS2_M4
25
+ target_sources(mbed-fvp-mps2-m4
26
26
INTERFACE
27
27
device/system_CMSDK_CM4.c
28
28
${STARTUP_FILE}
29
29
)
30
30
31
- target_link_libraries(FVP_MPS2_M4 INTERFACE FVP_MPS2 ARM_FM )
31
+ target_link_libraries(mbed-fvp-mps2-m4 INTERFACE mbed-fvp-mps2 mbed-arm-fm )
Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020 ARM Limited. All rights reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
- add_library(FVP_MPS2_M7 INTERFACE)
4
+ add_library(mbed-fvp-mps2-m7 INTERFACE)
5
5
6
- target_include_directories(FVP_MPS2_M7
6
+ target_include_directories(mbed-fvp-mps2-m7
7
7
INTERFACE
8
8
device
9
9
)
@@ -16,17 +16,17 @@ elseif(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
16
16
set(STARTUP_FILE device/TOOLCHAIN_GCC_ARM/startup_MPS2.S)
17
17
endif()
18
18
19
- mbed_set_linker_script(FVP_MPS2_M7 ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
19
+ mbed_set_linker_script(mbed-fvp-mps2-m7 ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
20
20
21
- target_include_directories(FVP_MPS2_M7
21
+ target_include_directories(mbed-fvp-mps2-m7
22
22
INTERFACE
23
23
device
24
24
)
25
25
26
- target_sources(FVP_MPS2_M7
26
+ target_sources(mbed-fvp-mps2-m7
27
27
INTERFACE
28
28
device/system_CMSDK_CM7.c
29
29
${STARTUP_FILE}
30
30
)
31
31
32
- target_link_libraries(FVP_MPS2_M7 INTERFACE FVP_MPS2 ARM_FM )
32
+ target_link_libraries(mbed-fvp-mps2-m7 INTERFACE mbed-fvp-mps2 mbed-arm-fm )
You can’t perform that action at this time.
0 commit comments