Some checks failed
Basic Checks / license-check (push) Has been cancelled
Basic Checks / include-check (push) Has been cancelled
Basic Checks / style-check (push) Has been cancelled
Basic Checks / docs-check (push) Has been cancelled
Basic Checks / python-tests (push) Has been cancelled
Basic Checks / pin-validation (push) Has been cancelled
Basic Checks / cmake-checks (push) Has been cancelled
Basic Checks / frozen-tools-check (push) Has been cancelled
Publish or Update docker image for head of branch / prepare-tags (push) Has been cancelled
Release or update docker image for a released mbed-os version / prepare-tags (push) Has been cancelled
Publish or Update docker image for head of branch / build-container (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/amd64) (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/arm64) (push) Has been cancelled
Publish or Update docker image for head of branch / deploy-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / build-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/amd64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/arm64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / deploy-container (push) Has been cancelled
Prune temporary docker images / prune-images (push) Has been cancelled
47 lines
1.2 KiB
CMake
47 lines
1.2 KiB
CMake
# Copyright (c) 2020-2021 ARM Limited. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(${MBED_TOOLCHAIN} STREQUAL "ARM")
|
|
set(STARTUP_FILE device/TOOLCHAIN_ARM_STD/TARGET_LPC11XX/startup_LPC11xx.S)
|
|
set(LINKER_FILE device/TOOLCHAIN_ARM_STD/TARGET_LPC11XX/LPC1114.sct)
|
|
elseif(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
|
|
set(STARTUP_FILE device/TOOLCHAIN_GCC_ARM/startup_LPC11xx.S)
|
|
set(LINKER_FILE device/TOOLCHAIN_GCC_ARM/TARGET_LPC11XX/LPC1114.ld)
|
|
endif()
|
|
|
|
add_subdirectory(TARGET_LPC11XX EXCLUDE_FROM_ALL)
|
|
|
|
add_library(mbed-lpc11xx-11cxx INTERFACE)
|
|
|
|
target_include_directories(mbed-lpc11xx-11cxx
|
|
INTERFACE
|
|
.
|
|
device
|
|
)
|
|
|
|
target_sources(mbed-lpc11xx-11cxx
|
|
INTERFACE
|
|
analogin_api.c
|
|
gpio_api.c
|
|
gpio_irq_api.c
|
|
i2c_api.c
|
|
pinmap.c
|
|
port_api.c
|
|
pwmout_api.c
|
|
serial_api.c
|
|
sleep.c
|
|
spi_api.c
|
|
us_ticker.c
|
|
|
|
device/cmsis_nvic.c
|
|
${STARTUP_FILE}
|
|
)
|
|
|
|
target_link_libraries(mbed-lpc11xx-11cxx INTERFACE mbed-nxp)
|
|
|
|
add_library(mbed-lpc1114 INTERFACE)
|
|
|
|
mbed_set_linker_script(mbed-lpc1114 ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
|
|
|
|
target_link_libraries(mbed-lpc1114 INTERFACE mbed-lpc11xx)
|