aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Spang <spang@google.com>2021-02-11 20:30:35 -0500
committerCQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>2021-04-07 23:53:42 +0000
commitecbabcc401c9c818008663424f25fd925b077ba6 (patch)
tree7d29f04c83ff1f1e95d679e3d06ff63701eff7e1
parent2c6c0ba11589feda9e0c1a6215d227e8177f3840 (diff)
downloadpigweed-ecbabcc401c9c818008663424f25fd925b077ba6.tar.gz
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>
-rw-r--r--pw_hdlc/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/pw_hdlc/CMakeLists.txt b/pw_hdlc/CMakeLists.txt
index 3241a39c8..5f48d55b0 100644
--- a/pw_hdlc/CMakeLists.txt
+++ b/pw_hdlc/CMakeLists.txt
@@ -18,6 +18,7 @@ pw_auto_add_simple_module(pw_hdlc
PUBLIC_DEPS
pw_assert
pw_bytes
+ pw_checksum
pw_result
pw_router.packet_parser
pw_rpc.common
@@ -25,7 +26,6 @@ pw_auto_add_simple_module(pw_hdlc
pw_stream
pw_sys_io
PRIVATE_DEPS
- pw_checksum
pw_log
)