47 lines
1.1 KiB
CMake
47 lines
1.1 KiB
CMake
# Copyright (c) 2020 Nordic Semiconductor ASA
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(CONFIG_MCUBOOT_BOOTUTIL_LIB)
|
|
|
|
zephyr_interface_library_named(MCUBOOT_BOOTUTIL)
|
|
|
|
target_include_directories(MCUBOOT_BOOTUTIL INTERFACE
|
|
../
|
|
../include
|
|
../../zephyr/include
|
|
)
|
|
|
|
zephyr_library_named(mcuboot_util)
|
|
zephyr_library_sources(
|
|
../src/bootutil_public.c
|
|
)
|
|
|
|
# Sensitivity to the TEST_BOOT_IMAGE_ACCESS_HOOKS define is implemented for
|
|
# allowing the test-build with the hooks feature enabled.
|
|
if(TEST_BOOT_IMAGE_ACCESS_HOOKS)
|
|
zephyr_library_sources(
|
|
${APPLICATION_SOURCE_DIR}/hooks_sample.c
|
|
)
|
|
endif()
|
|
|
|
zephyr_library_link_libraries(MCUBOOT_BOOTUTIL)
|
|
target_link_libraries(MCUBOOT_BOOTUTIL INTERFACE zephyr_interface)
|
|
|
|
if(CONFIG_BOOT_USE_TINYCRYPT)
|
|
target_include_directories(MCUBOOT_BOOTUTIL INTERFACE
|
|
../../../ext/tinycrypt/lib/include
|
|
)
|
|
endif()
|
|
|
|
if(CONFIG_BOOT_USE_PSA_CRYPTO)
|
|
target_include_directories(MCUBOOT_BOOTUTIL INTERFACE
|
|
${ZEPHYR_MBEDTLS_MODULE_DIR}/include
|
|
)
|
|
endif()
|
|
|
|
if(CONFIG_BOOT_USE_MBEDTLS OR CONFIG_BOOT_USE_PSA_CRYPTO AND NOT CONFIG_PSA_CORE_OBERON)
|
|
zephyr_link_libraries(mbedTLS)
|
|
endif()
|
|
endif()
|