Wyatt Hepler | 0fbcdfc | 2020-01-02 07:53:39 -0800 | [diff] [blame] | 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 | |
| 15 | project(Pigweed) |
| 16 | |
| 17 | cmake_minimum_required(VERSION 3.14) |
| 18 | |
| 19 | include(pw_build/pigweed.cmake) |
| 20 | |
Wyatt Hepler | b8b01e3 | 2020-01-08 18:33:40 -0800 | [diff] [blame] | 21 | add_subdirectory(pw_base64) |
Wyatt Hepler | 92ccb66 | 2020-01-21 18:28:41 -0800 | [diff] [blame] | 22 | add_subdirectory(pw_checksum) |
Wyatt Hepler | 0fbcdfc | 2020-01-02 07:53:39 -0800 | [diff] [blame] | 23 | add_subdirectory(pw_cpu_exception) |
| 24 | add_subdirectory(pw_cpu_exception_armv7m) |
| 25 | add_subdirectory(pw_dumb_io) |
| 26 | add_subdirectory(pw_dumb_io_stdio) |
Wyatt Hepler | 2ad6067 | 2020-01-21 08:00:16 -0800 | [diff] [blame] | 27 | add_subdirectory(pw_kvs) |
Wyatt Hepler | daf02e0 | 2020-01-21 10:30:54 -0800 | [diff] [blame] | 28 | add_subdirectory(pw_log) |
Wyatt Hepler | 4981058 | 2020-01-24 11:26:35 -0800 | [diff] [blame] | 29 | add_subdirectory(pw_log_basic) |
Wyatt Hepler | 0412a7d | 2020-01-28 16:27:32 -0800 | [diff] [blame] | 30 | add_subdirectory(pw_minimal_cpp_stdlib) |
Wyatt Hepler | c542a5d | 2020-01-15 15:43:10 -0800 | [diff] [blame] | 31 | add_subdirectory(pw_polyfill) |
Wyatt Hepler | 0fbcdfc | 2020-01-02 07:53:39 -0800 | [diff] [blame] | 32 | add_subdirectory(pw_preprocessor) |
| 33 | add_subdirectory(pw_span) |
| 34 | add_subdirectory(pw_status) |
| 35 | add_subdirectory(pw_string) |
Wyatt Hepler | 89acf60 | 2020-01-06 12:00:20 -0800 | [diff] [blame] | 36 | add_subdirectory(pw_tokenizer) |
Wyatt Hepler | 0fbcdfc | 2020-01-02 07:53:39 -0800 | [diff] [blame] | 37 | add_subdirectory(pw_unit_test) |
| 38 | add_subdirectory(pw_varint) |