• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2020 The Pigweed Authors
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4# use this file except in compliance with the License. You may obtain a copy of
5# the License at
6#
7#     https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations under
13# the License.
14
15project(Pigweed)
16
17cmake_minimum_required(VERSION 3.16)
18
19# Do not rely on the PW_ROOT environment variable being set through bootstrap.
20# Regardless of whether it's set or not the following include will ensure it is.
21include(pw_build/pigweed.cmake)
22
23add_subdirectory(pw_assert EXCLUDE_FROM_ALL)
24add_subdirectory(pw_assert_basic EXCLUDE_FROM_ALL)
25add_subdirectory(pw_assert_log EXCLUDE_FROM_ALL)
26add_subdirectory(pw_assert_zephyr EXCLUDE_FROM_ALL)
27add_subdirectory(pw_base64 EXCLUDE_FROM_ALL)
28add_subdirectory(pw_blob_store EXCLUDE_FROM_ALL)
29add_subdirectory(pw_build EXCLUDE_FROM_ALL)
30add_subdirectory(pw_build_info EXCLUDE_FROM_ALL)
31add_subdirectory(pw_bytes EXCLUDE_FROM_ALL)
32add_subdirectory(pw_checksum EXCLUDE_FROM_ALL)
33add_subdirectory(pw_chrono EXCLUDE_FROM_ALL)
34add_subdirectory(pw_chrono_freertos EXCLUDE_FROM_ALL)
35add_subdirectory(pw_chrono_stl EXCLUDE_FROM_ALL)
36add_subdirectory(pw_chrono_zephyr EXCLUDE_FROM_ALL)
37add_subdirectory(pw_containers EXCLUDE_FROM_ALL)
38add_subdirectory(pw_cpu_exception EXCLUDE_FROM_ALL)
39add_subdirectory(pw_cpu_exception_cortex_m EXCLUDE_FROM_ALL)
40add_subdirectory(pw_file EXCLUDE_FROM_ALL)
41add_subdirectory(pw_function EXCLUDE_FROM_ALL)
42add_subdirectory(pw_hdlc EXCLUDE_FROM_ALL)
43add_subdirectory(pw_interrupt EXCLUDE_FROM_ALL)
44add_subdirectory(pw_interrupt_cortex_m EXCLUDE_FROM_ALL)
45add_subdirectory(pw_interrupt_zephyr EXCLUDE_FROM_ALL)
46add_subdirectory(pw_kvs EXCLUDE_FROM_ALL)
47add_subdirectory(pw_log EXCLUDE_FROM_ALL)
48add_subdirectory(pw_log_basic EXCLUDE_FROM_ALL)
49add_subdirectory(pw_log_null EXCLUDE_FROM_ALL)
50add_subdirectory(pw_log_string EXCLUDE_FROM_ALL)
51add_subdirectory(pw_log_tokenized EXCLUDE_FROM_ALL)
52add_subdirectory(pw_log_zephyr EXCLUDE_FROM_ALL)
53add_subdirectory(pw_minimal_cpp_stdlib EXCLUDE_FROM_ALL)
54add_subdirectory(pw_multisink EXCLUDE_FROM_ALL)
55add_subdirectory(pw_persistent_ram EXCLUDE_FROM_ALL)
56add_subdirectory(pw_polyfill EXCLUDE_FROM_ALL)
57add_subdirectory(pw_preprocessor EXCLUDE_FROM_ALL)
58add_subdirectory(pw_protobuf EXCLUDE_FROM_ALL)
59add_subdirectory(pw_protobuf_compiler EXCLUDE_FROM_ALL)
60add_subdirectory(pw_random EXCLUDE_FROM_ALL)
61add_subdirectory(pw_result EXCLUDE_FROM_ALL)
62add_subdirectory(pw_ring_buffer EXCLUDE_FROM_ALL)
63add_subdirectory(pw_router EXCLUDE_FROM_ALL)
64add_subdirectory(pw_rpc EXCLUDE_FROM_ALL)
65add_subdirectory(pw_snapshot EXCLUDE_FROM_ALL)
66add_subdirectory(pw_span EXCLUDE_FROM_ALL)
67add_subdirectory(pw_status EXCLUDE_FROM_ALL)
68add_subdirectory(pw_stream EXCLUDE_FROM_ALL)
69add_subdirectory(pw_string EXCLUDE_FROM_ALL)
70add_subdirectory(pw_sync EXCLUDE_FROM_ALL)
71add_subdirectory(pw_sync_freertos EXCLUDE_FROM_ALL)
72add_subdirectory(pw_sync_stl EXCLUDE_FROM_ALL)
73add_subdirectory(pw_sync_zephyr EXCLUDE_FROM_ALL)
74add_subdirectory(pw_sys_io EXCLUDE_FROM_ALL)
75add_subdirectory(pw_sys_io_stdio EXCLUDE_FROM_ALL)
76add_subdirectory(pw_sys_io_zephyr EXCLUDE_FROM_ALL)
77add_subdirectory(pw_system EXCLUDE_FROM_ALL)
78add_subdirectory(pw_thread EXCLUDE_FROM_ALL)
79add_subdirectory(pw_thread_freertos EXCLUDE_FROM_ALL)
80add_subdirectory(pw_thread_stl EXCLUDE_FROM_ALL)
81add_subdirectory(pw_tokenizer EXCLUDE_FROM_ALL)
82add_subdirectory(pw_trace EXCLUDE_FROM_ALL)
83add_subdirectory(pw_trace_tokenized EXCLUDE_FROM_ALL)
84add_subdirectory(pw_transfer EXCLUDE_FROM_ALL)
85add_subdirectory(pw_unit_test EXCLUDE_FROM_ALL)
86add_subdirectory(pw_varint EXCLUDE_FROM_ALL)
87
88add_subdirectory(third_party/nanopb EXCLUDE_FROM_ALL)
89add_subdirectory(third_party/freertos EXCLUDE_FROM_ALL)
90
91if(NOT ZEPHYR_PIGWEED_MODULE_DIR)
92  add_subdirectory(targets/host EXCLUDE_FROM_ALL)
93
94  add_custom_target(pw_apps)
95  add_dependencies(pw_apps pw_hdlc.rpc_example)
96endif()
97