| # |
| # Copyright (c) 2020 Project CHIP Authors |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| cmake_minimum_required(VERSION 3.13.1) |
| |
| get_filename_component(CHIP_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/third_party/connectedhomeip REALPATH) |
| get_filename_component(NRFCONNECT_COMMON ${CHIP_ROOT}/examples/platform/nrfconnect REALPATH) |
| set(PIGWEED_ROOT "${CHIP_ROOT}/third_party/pigweed/repo") |
| |
| include(${CHIP_ROOT}/config/nrfconnect/app/check-nrfconnect-version.cmake) |
| |
| # Load NCS/Zephyr build system |
| set(CONF_FILE prj.conf) |
| |
| if(${BOARD} STREQUAL "nrf52840dongle_nrf52840") |
| list(INSERT OVERLAY_CONFIG 0 ${CHIP_ROOT}/config/nrfconnect/app/overlay-usb_support.conf) |
| endif() |
| list(APPEND ZEPHYR_EXTRA_MODULES ${CHIP_ROOT}/config/nrfconnect/chip-module) |
| find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) |
| |
| if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/boards/${BOARD}.conf) |
| list(APPEND CONF_FILE boards/${BOARD}.conf) |
| endif() |
| |
| project(chip-nrf52840-pigweed-example) |
| |
| include(${CHIP_ROOT}/config/nrfconnect/app/enable-gnu-std.cmake) |
| |
| # -Wmaybe-uninitialized has too many false positives, including on std::optional |
| # and chip::Optional. Make it nonfatal. |
| # |
| # See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80635 |
| target_compile_options(app PRIVATE -Werror -Wno-error=maybe-uninitialized) |
| |
| # Make all targets created below depend on zephyr_interface to inherit MCU-related compilation flags |
| link_libraries($<BUILD_INTERFACE:zephyr_interface>) |
| |
| include(${PIGWEED_ROOT}/pw_build/pigweed.cmake) |
| include(${PIGWEED_ROOT}/pw_protobuf_compiler/proto.cmake) |
| |
| pw_set_module_config(pw_rpc_CONFIG pw_rpc.disable_global_mutex_config) |
| pw_set_backend(pw_log pw_log_basic) |
| pw_set_backend(pw_assert.check pw_assert_log.check_backend) |
| pw_set_backend(pw_assert.assert pw_assert.assert_compatibility_backend) |
| pw_set_backend(pw_sys_io pw_sys_io.nrfconnect) |
| set(dir_pw_third_party_nanopb "${CHIP_ROOT}/third_party/nanopb/repo" CACHE STRING "" FORCE) |
| |
| add_subdirectory(third_party/connectedhomeip/examples/platform/nrfconnect/pw_sys_io) |
| add_subdirectory(third_party/connectedhomeip/third_party/nanopb/repo) |
| add_subdirectory(third_party/connectedhomeip/third_party/pigweed/repo) |
| |
| target_include_directories(app PRIVATE main/include |
| ${NRFCONNECT_COMMON}/util/include |
| ${CHIP_ROOT}/src/lib/support |
| ${PIGWEED_ROOT}/pw_sys_io/public |
| ${PIGWEED_ROOT}/pw_span/public_overrides |
| ${PIGWEED_ROOT}/pw_span/public |
| ${PIGWEED_ROOT}/pw_polyfill/public |
| ${PIGWEED_ROOT}/pw_polyfill/standard_library_public |
| ${PIGWEED_ROOT}/pw_polyfill/public_overrides |
| ${PIGWEED_ROOT}/pw_rpc/public |
| ${PIGWEED_ROOT}/pw_status/public |
| ${PIGWEED_ROOT}/pw_preprocessor/public |
| ../../common |
| ../../common/pigweed/nrfconnect |
| ${NRFCONNECT_COMMON}/pw_sys_io/public) |
| |
| target_sources(app PRIVATE main/main.cpp |
| ../../common/pigweed/RpcService.cpp |
| ../../common/pigweed/nrfconnect/PigweedLoggerMutex.cpp |
| ${NRFCONNECT_COMMON}/util/LEDWidget.cpp |
| ${NRFCONNECT_COMMON}/util/PigweedLogger.cpp |
| ) |
| |
| target_link_libraries(app PUBLIC |
| pw_checksum |
| pw_hdlc |
| pw_log |
| pw_rpc.nanopb.echo_service |
| pw_rpc.server |
| ) |
| |
| # Workaround cyclic dependency between nrf_security libraries) |
| target_link_libraries(mbedcrypto_base PUBLIC |
| mbedcrypto |
| ) |
| |
| include(${CHIP_ROOT}/config/nrfconnect/app/flashing.cmake) |