Basic project structure, basic encoder implementation
This commit is contained in:
commit
4159fc4643
12 changed files with 897 additions and 0 deletions
10
CMakeLists.txt
Normal file
10
CMakeLists.txt
Normal 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()
|
Loading…
Add table
Add a link
Reference in a new issue