blob: 18d47db70224a31d34e1b2c1e692bcd8c645a9e7 [file] [log] [blame]
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -08001# 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
Wyatt Hepler0a6f7632020-10-29 09:08:19 -070017cmake_minimum_required(VERSION 3.16)
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -080018
Keir Mierle3cee8792020-01-22 17:08:13 -080019add_subdirectory(pw_assert)
Keir Mierle848ca252020-02-13 14:48:55 -080020add_subdirectory(pw_assert_basic)
Wyatt Hepler0a6f7632020-10-29 09:08:19 -070021add_subdirectory(pw_assert_log)
Wyatt Heplerb8b01e32020-01-08 18:33:40 -080022add_subdirectory(pw_base64)
David Rogers2d195022020-07-16 14:07:47 -070023add_subdirectory(pw_blob_store)
Wyatt Hepler0a6f7632020-10-29 09:08:19 -070024add_subdirectory(pw_build)
shaneajg9c19db42020-06-11 15:49:51 -040025add_subdirectory(pw_bytes)
Wyatt Hepler92ccb662020-01-21 18:28:41 -080026add_subdirectory(pw_checksum)
Wyatt Hepler76293e32020-02-07 18:07:19 -080027add_subdirectory(pw_containers)
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -080028add_subdirectory(pw_cpu_exception)
29add_subdirectory(pw_cpu_exception_armv7m)
Wyatt Hepler2ad60672020-01-21 08:00:16 -080030add_subdirectory(pw_kvs)
Wyatt Heplerdaf02e02020-01-21 10:30:54 -080031add_subdirectory(pw_log)
Wyatt Hepler49810582020-01-24 11:26:35 -080032add_subdirectory(pw_log_basic)
Wyatt Heplercb725c12020-05-01 11:05:01 -070033add_subdirectory(pw_log_tokenized)
Wyatt Hepler0412a7d2020-01-28 16:27:32 -080034add_subdirectory(pw_minimal_cpp_stdlib)
Wyatt Heplerc542a5d2020-01-15 15:43:10 -080035add_subdirectory(pw_polyfill)
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -080036add_subdirectory(pw_preprocessor)
David Rogers96922572020-08-04 10:24:57 -070037add_subdirectory(pw_random)
38add_subdirectory(pw_result)
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -080039add_subdirectory(pw_span)
40add_subdirectory(pw_status)
David Rogers96922572020-08-04 10:24:57 -070041add_subdirectory(pw_stream)
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -080042add_subdirectory(pw_string)
Armando Montanezf7a5a742020-03-02 14:58:59 -080043add_subdirectory(pw_sys_io)
44add_subdirectory(pw_sys_io_stdio)
Wyatt Hepler89acf602020-01-06 12:00:20 -080045add_subdirectory(pw_tokenizer)
Robert Oliverd1323f42020-04-27 12:05:16 -040046add_subdirectory(pw_trace)
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -080047add_subdirectory(pw_unit_test)
48add_subdirectory(pw_varint)