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