blob: c4141443e31229c3a8e8209f9fa20627472ce964 [file] [log] [blame]
David Rogers96922572020-08-04 10:24:57 -07001# 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
Wyatt Hepler0a6f7632020-10-29 09:08:19 -070015include($ENV{PW_ROOT}/pw_build/pigweed.cmake)
16
Wyatt Hepler7208cd92020-12-14 12:01:15 -080017pw_add_module_library(pw_stream
18 SOURCES
19 memory_stream.cc
David Rogers96922572020-08-04 10:24:57 -070020 PUBLIC_DEPS
Wyatt Hepler7208cd92020-12-14 12:01:15 -080021 pw_assert
David Rogers96922572020-08-04 10:24:57 -070022 pw_bytes
David Rogers96922572020-08-04 10:24:57 -070023 pw_result
24 pw_span
25 pw_status
Wyatt Hepler7208cd92020-12-14 12:01:15 -080026)
27
28pw_add_module_library(pw_stream.socket_stream
29 SOURCES
30 socket_stream.cc
David Rogers96922572020-08-04 10:24:57 -070031 PRIVATE_DEPS
Wyatt Hepler7208cd92020-12-14 12:01:15 -080032 pw_stream
33)
34
35pw_add_module_library(pw_stream.sys_io_stream
36 PRIVATE_DEPS
37 pw_stream
38 pw_sys_io
David Rogers96922572020-08-04 10:24:57 -070039)
Armando Montanezf82d95b2021-04-08 12:00:09 -070040
41pw_add_test(pw_stream.memory_stream_test
42 SOURCES
43 memory_stream_test.cc
44 DEPS
45 pw_stream
46 GROUPS
47 modules
48 pw_stream
49)