CMake: Fix ARM MUSCA NS targets build

Add the missing CMake targets for NS Mbed boards.
pull/14314/head
Hugues Kamba 2021-02-22 12:17:41 +00:00
parent 26606218ad
commit 0ce36ac5e2
2 changed files with 16 additions and 2 deletions

View File

@ -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
)

View File

@ -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
)