third_party.pigweed.src/pw_hdlc/CMakeLists.txt
Michael Spang ecbabcc401 pw_hdlc: Move pw_checksum dep to public
This fixes build errors from the include in pw_hdlc/decoder.h of
pw_checksum/crc32.h. This was introduced in 5039a81e ("pw_hdlc: Add
wire-encoded frame parser").

No-Docs-Update-Reason: bug fix

Change-Id: I413c6f685996f2cf1c31eaa4b7f701e156fe535b
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/32680
Reviewed-by: Alexei Frolov <frolv@google.com>
Commit-Queue: Michael Spang <spang@google.com>
2021-04-07 23:53:42 +00:00

33 lines
884 B
CMake

# Copyright 2020 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
include($ENV{PW_ROOT}/pw_build/pigweed.cmake)
pw_auto_add_simple_module(pw_hdlc
PUBLIC_DEPS
pw_assert
pw_bytes
pw_checksum
pw_result
pw_router.packet_parser
pw_rpc.common
pw_status
pw_stream
pw_sys_io
PRIVATE_DEPS
pw_log
)
add_subdirectory(rpc_example)