Update README.md

This commit is contained in:
Andrei Yankovich
2022-11-16 21:06:44 +03:00
committed by GitHub
parent d916c4e448
commit 36d8994094
+21
View File
@@ -1,2 +1,23 @@
# crc # crc
crc16/crc32/crc64 crc16/crc32/crc64
## Build
``` bash
git clone https://github.com/gityf/crc.git
mkdir build
cd build
cmake .. -DBUILD_SHARED_LIBS=1
make
```
## Include
### Cmake build system
``` cmake
add_subdirectory(crc)
target_link_libraries(${PROJECT_NAME} PUBLIC crc)
```