Files
mbed-os/targets/TARGET_Silicon_Labs/TARGET_EFM32/CMakeLists.txt
Beslan 0ef1717155
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
Mirror mbed-os-6.15.0
2026-07-10 18:42:39 +03:00

98 lines
2.3 KiB
CMake

# Copyright (c) 2020-2021 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
add_subdirectory(TARGET_EFM32GG EXCLUDE_FROM_ALL)
add_subdirectory(TARGET_EFM32GG11 EXCLUDE_FROM_ALL)
add_subdirectory(TARGET_EFR32MG12 EXCLUDE_FROM_ALL)
add_library(mbed-efm32 INTERFACE)
target_include_directories(mbed-efm32
INTERFACE
.
common
emlib/inc
trng
)
target_sources(mbed-efm32
INTERFACE
analogin_api.c
analogout_api.c
burtc.c
can_api.c
crc_api.c
dma_api.c
flash_api.c
gpio_api.c
gpio_irq_api.c
i2c_api.c
itm_api.c
lp_ticker.c
pinmap.c
pinmap_function.c
port_api.c
pwmout_api.c
qspi_api.c
resetreason_api.c
rtcc.c
serial_api.c
sleep.c
spi_api.c
us_ticker.c
watchdog_api.c
common/mbed_overrides.c
emlib/src/em_acmp.c
emlib/src/em_adc.c
emlib/src/em_aes.c
emlib/src/em_assert.c
emlib/src/em_burtc.c
emlib/src/em_can.c
emlib/src/em_cmu.c
emlib/src/em_core.c
emlib/src/em_cryotimer.c
emlib/src/em_crypto.c
emlib/src/em_csen.c
emlib/src/em_dac.c
emlib/src/em_dbg.c
emlib/src/em_dma.c
emlib/src/em_ebi.c
emlib/src/em_emu.c
emlib/src/em_eusart.c
emlib/src/em_gpcrc.c
emlib/src/em_gpio.c
emlib/src/em_i2c.c
emlib/src/em_iadc.c
emlib/src/em_idac.c
emlib/src/em_int.c
emlib/src/em_lcd.c
emlib/src/em_ldma.c
emlib/src/em_lesense.c
emlib/src/em_letimer.c
emlib/src/em_leuart.c
emlib/src/em_mpu.c
emlib/src/em_msc.c
emlib/src/em_opamp.c
emlib/src/em_pcnt.c
emlib/src/em_pdm.c
emlib/src/em_prs.c
emlib/src/em_qspi.c
emlib/src/em_rmu.c
emlib/src/em_rtc.c
emlib/src/em_rtcc.c
emlib/src/em_se.c
emlib/src/em_system.c
emlib/src/em_timer.c
emlib/src/em_usart.c
emlib/src/em_vcmp.c
emlib/src/em_vdac.c
emlib/src/em_wdog.c
trng/sl_trng.c
trng/trng_api.c
)
target_link_libraries(mbed-efm32 INTERFACE mbed-silicon-labs)