zephyr/lib/crc/CMakeLists.txt
Adrien Ricciardi 863f6affef lib: crc: Add OpenPGP CRC-24
Implementation is based on the section 6.1 of the RFC 4880.

Signed-off-by: Adrien Ricciardi <aricciardi@baylibre.com>
2024-05-29 10:51:21 -07:00

12 lines
215 B
CMake

# SPDX-License-Identifier: Apache-2.0
zephyr_sources_ifdef(CONFIG_CRC
crc32c_sw.c
crc32_sw.c
crc24_sw.c
crc16_sw.c
crc8_sw.c
crc7_sw.c
crc4_sw.c
)
zephyr_sources_ifdef(CONFIG_CRC_SHELL crc_shell.c)