LibCBOR/Tests/CMakeLists.txt

22 lines
250 B
Text
Raw Normal View History

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"
)