MushMachine/framework/s6zer/test/CMakeLists.txt
Green Sky f27300a8fa 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
2022-12-07 00:35:25 +01:00

19 lines
258 B
CMake

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)