blob: 3631ad9566aa1ded9730e859e9f39ede7cc71349 [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
17cmake_minimum_required(VERSION 3.14)
18
19include(pw_build/pigweed.cmake)
20
Keir Mierle3cee8792020-01-22 17:08:13 -080021add_subdirectory(pw_assert)
Keir Mierle848ca252020-02-13 14:48:55 -080022add_subdirectory(pw_assert_basic)
Wyatt Heplerb8b01e32020-01-08 18:33:40 -080023add_subdirectory(pw_base64)
Wyatt Hepler92ccb662020-01-21 18:28:41 -080024add_subdirectory(pw_checksum)
Wyatt Hepler76293e32020-02-07 18:07:19 -080025add_subdirectory(pw_containers)
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -080026add_subdirectory(pw_cpu_exception)
27add_subdirectory(pw_cpu_exception_armv7m)
Wyatt Hepler2ad60672020-01-21 08:00:16 -080028add_subdirectory(pw_kvs)
Wyatt Heplerdaf02e02020-01-21 10:30:54 -080029add_subdirectory(pw_log)
Wyatt Hepler49810582020-01-24 11:26:35 -080030add_subdirectory(pw_log_basic)
Wyatt Hepler0412a7d2020-01-28 16:27:32 -080031add_subdirectory(pw_minimal_cpp_stdlib)
Wyatt Heplerc542a5d2020-01-15 15:43:10 -080032add_subdirectory(pw_polyfill)
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -080033add_subdirectory(pw_preprocessor)
34add_subdirectory(pw_span)
35add_subdirectory(pw_status)
36add_subdirectory(pw_string)
Armando Montanezf7a5a742020-03-02 14:58:59 -080037add_subdirectory(pw_sys_io)
38add_subdirectory(pw_sys_io_stdio)
Wyatt Hepler89acf602020-01-06 12:00:20 -080039add_subdirectory(pw_tokenizer)
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -080040add_subdirectory(pw_unit_test)
41add_subdirectory(pw_varint)