add new serializer based on bitpacking

it has the important stuff, but still misses conviniences like buffers
and optimizations like varints.
only works for little endian but theoretically only needs endian
detection to be able to support bigendian
This commit is contained in:
2022-12-06 19:21:20 +01:00
committed by Erik Scholz
parent 8d24976a13
commit f27300a8fa
7 changed files with 987 additions and 0 deletions

View File

@ -0,0 +1,18 @@
add_executable(s6zer_test
test.cpp
)
target_include_directories(s6zer_test PRIVATE ".")
target_compile_features(s6zer_test PRIVATE cxx_std_17)
target_link_libraries(s6zer_test
gtest_main
s6zer
random
)
add_test(NAME s6zer_test COMMAND s6zer_test)