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

10
CMakeLists.txt Normal file
View file

@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.25)
project(LibCBOR
LANGUAGES CXX
)
add_subdirectory(LibCBOR)
if(${PROJECT_IS_TOP_LEVEL})
add_subdirectory(Tests)
endif()