22 lines
250 B
Text
22 lines
250 B
Text
|
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"
|
||
|
)
|