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
48 lines
1.8 KiB
CMake
48 lines
1.8 KiB
CMake
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# List of all connectivity libraries available.
|
|
add_library(mbed-802.15.4-rf INTERFACE)
|
|
add_library(mbed-ble INTERFACE)
|
|
add_library(mbed-ble-cordio INTERFACE)
|
|
add_library(mbed-ble-cordio_ll INTERFACE)
|
|
add_library(mbed-cellular INTERFACE)
|
|
add_library(mbed-coap INTERFACE)
|
|
add_library(mbed-emac INTERFACE)
|
|
add_library(mbed-lorawan INTERFACE)
|
|
add_library(mbed-lwipstack INTERFACE)
|
|
add_library(mbed-mbedtls INTERFACE)
|
|
add_library(mbed-nanostack INTERFACE)
|
|
add_library(mbed-nanostack-coap_service INTERFACE)
|
|
add_library(mbed-nanostack-mbed_mesh_api INTERFACE)
|
|
add_library(mbed-nanostack-hal_mbed_cmsis_rtos INTERFACE)
|
|
add_library(mbed-nanostack-sal_stack INTERFACE)
|
|
add_library(mbed-nanostack-sal_stack-event_loop INTERFACE)
|
|
add_library(mbed-nanostack-libservice INTERFACE)
|
|
add_library(mbed-netsocket INTERFACE)
|
|
add_library(mbed-nfc INTERFACE)
|
|
add_library(mbed-ppp INTERFACE)
|
|
add_library(mbed-wifi INTERFACE)
|
|
|
|
if(${CMAKE_CROSSCOMPILING})
|
|
# The directories below contain optional target libraries
|
|
add_subdirectory(FEATURE_BLE EXCLUDE_FROM_ALL)
|
|
add_subdirectory(cellular EXCLUDE_FROM_ALL)
|
|
add_subdirectory(drivers EXCLUDE_FROM_ALL)
|
|
add_subdirectory(libraries EXCLUDE_FROM_ALL)
|
|
add_subdirectory(lorawan EXCLUDE_FROM_ALL)
|
|
add_subdirectory(lwipstack EXCLUDE_FROM_ALL)
|
|
add_subdirectory(mbedtls EXCLUDE_FROM_ALL)
|
|
add_subdirectory(nanostack EXCLUDE_FROM_ALL)
|
|
add_subdirectory(netsocket EXCLUDE_FROM_ALL)
|
|
add_subdirectory(nfc EXCLUDE_FROM_ALL)
|
|
else()
|
|
# Add these subdirectories for the Unit test
|
|
add_subdirectory(cellular)
|
|
add_subdirectory(lorawan)
|
|
add_subdirectory(netsocket)
|
|
add_subdirectory(mbedtls)
|
|
add_subdirectory(libraries)
|
|
add_subdirectory(FEATURE_BLE)
|
|
endif()
|