mirror of https://github.com/ARMmbed/mbed-os.git
CMake: Fix ARM MUSCA NS targets build
Add the missing CMake targets for NS Mbed boards.pull/14314/head
parent
26606218ad
commit
0ce36ac5e2
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
# Copyright (c) 2020-2021 ARM Limited. All rights reserved.
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
add_library(mbed-arm-musca-b1 INTERFACE)
|
add_library(mbed-arm-musca-b1 INTERFACE)
|
||||||
|
|
@ -55,3 +55,10 @@ target_link_libraries(mbed-arm-musca-b1
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/s_veneers.o
|
${CMAKE_CURRENT_SOURCE_DIR}/s_veneers.o
|
||||||
mbed-arm-ssg
|
mbed-arm-ssg
|
||||||
)
|
)
|
||||||
|
|
||||||
|
add_library(mbed-arm-musca-b1-ns INTERFACE)
|
||||||
|
|
||||||
|
target_link_libraries(mbed-arm-musca-b1-ns
|
||||||
|
INTERFACE
|
||||||
|
mbed-arm-musca-b1
|
||||||
|
)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
# Copyright (c) 2020-2021 ARM Limited. All rights reserved.
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
add_library(mbed-arm-musca-s1 INTERFACE)
|
add_library(mbed-arm-musca-s1 INTERFACE)
|
||||||
|
|
@ -61,3 +61,10 @@ target_link_libraries(mbed-arm-musca-s1
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/s_veneers.o
|
${CMAKE_CURRENT_SOURCE_DIR}/s_veneers.o
|
||||||
mbed-arm-ssg
|
mbed-arm-ssg
|
||||||
)
|
)
|
||||||
|
|
||||||
|
add_library(mbed-arm-musca-s1-ns INTERFACE)
|
||||||
|
|
||||||
|
target_link_libraries(mbed-arm-musca-s1-ns
|
||||||
|
INTERFACE
|
||||||
|
mbed-arm-musca-s1
|
||||||
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue