Basic project structure, basic encoder implementation

This commit is contained in:
TennesseeTrash 2025-09-14 13:58:26 +02:00
commit 4159fc4643
12 changed files with 897 additions and 0 deletions

21
Tests/CMakeLists.txt Normal file
View file

@ -0,0 +1,21 @@
add_executable(Tests)
target_compile_features(Tests
PRIVATE
cxx_std_23
)
target_include_directories(Tests
PRIVATE
"Include"
)
target_link_libraries(Tests
PRIVATE
LibCBOR
)
target_sources(Tests
PRIVATE
"Main.cpp"
)