103 lines
4.1 KiB
CMake
103 lines
4.1 KiB
CMake
#
|
|
# Copyright (c) 2021, The OpenThread Authors.
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are met:
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
# documentation and/or other materials provided with the distribution.
|
|
# 3. Neither the name of the copyright holder nor the
|
|
# names of its contributors may be used to endorse or promote products
|
|
# derived from this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
|
|
find_package(PkgConfig)
|
|
|
|
option(OTBR_DOC "Build documentation" OFF)
|
|
|
|
option(OTBR_BORDER_AGENT "Enable Border Agent" ON)
|
|
if (OTBR_BORDER_AGENT)
|
|
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_BORDER_AGENT=1)
|
|
endif()
|
|
|
|
option(OTBR_BACKBONE_ROUTER "Enable Backbone Router" OFF)
|
|
if (OTBR_BACKBONE_ROUTER)
|
|
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_BACKBONE_ROUTER=1)
|
|
endif()
|
|
|
|
option(OTBR_BORDER_ROUTING "Enable Border Routing Manager" OFF)
|
|
|
|
option(OTBR_BORDER_ROUTING_NAT64 "Enable NAT64 support in Border Routing Manager" OFF)
|
|
|
|
option(OTBR_DBUS "Enable DBus support" OFF)
|
|
if(OTBR_DBUS)
|
|
pkg_check_modules(DBUS REQUIRED dbus-1)
|
|
pkg_get_variable(OTBR_DBUS_SYSTEM_BUS_SERVICES_DIR dbus-1 system_bus_services_dir)
|
|
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_DBUS_SERVER=1)
|
|
endif()
|
|
|
|
option(OTBR_DUA_ROUTING "Enable Backbone Router DUA Routing" OFF)
|
|
if (OTBR_DUA_ROUTING)
|
|
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_DUA_ROUTING=1)
|
|
endif()
|
|
|
|
option(OTBR_OPENWRT "Enable OpenWrt support" OFF)
|
|
if(OTBR_OPENWRT)
|
|
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_OPENWRT=1)
|
|
endif()
|
|
|
|
option(OTBR_REST "Enable Rest Server" OFF)
|
|
if(OTBR_REST)
|
|
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_REST_SERVER=1)
|
|
endif()
|
|
|
|
option(OTBR_SRP_ADVERTISING_PROXY "Enable Advertising Proxy" OFF)
|
|
if (OTBR_SRP_ADVERTISING_PROXY)
|
|
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_SRP_ADVERTISING_PROXY=1)
|
|
endif()
|
|
|
|
option(OTBR_DNSSD_DISCOVERY_PROXY "Enable DNS-SD Discovery Proxy support" OFF)
|
|
if (OTBR_DNSSD_DISCOVERY_PROXY)
|
|
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_DNSSD_DISCOVERY_PROXY=1)
|
|
endif()
|
|
|
|
option(OTBR_UNSECURE_JOIN "Enable unsecure joining" OFF)
|
|
if(OTBR_UNSECURE_JOIN)
|
|
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_UNSECURE_JOIN=1)
|
|
endif()
|
|
|
|
option(OTBR_TREL "Enable TREL link support." OFF)
|
|
if(OTBR_TREL)
|
|
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_TREL=1)
|
|
endif()
|
|
|
|
|
|
option(OTBR_WEB "Enable Web GUI" OFF)
|
|
|
|
option(OTBR_NOTIFY_UPSTART "Notify upstart when ready." ON)
|
|
if(OTBR_NOTIFY_UPSTART)
|
|
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_NOTIFY_UPSTART=1)
|
|
endif()
|
|
|
|
option(OTBR_VENDOR_INFRA_LINK_SELECT "Enable Vendor-specific infrastructure link selection rules" OFF)
|
|
if(OTBR_VENDOR_INFRA_LINK_SELECT)
|
|
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_VENDOR_INFRA_LINK_SELECT=1)
|
|
else()
|
|
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_VENDOR_INFRA_LINK_SELECT=0)
|
|
endif()
|