Added CMake "install" target (closes #1209)

This commit is contained in:
Benoit Blanchon
2020-04-07 21:43:10 +02:00
parent 40d1cfe7af
commit 1791dccbf2
21 changed files with 173 additions and 17 deletions

View File

@ -14,5 +14,9 @@ add_executable(JsonSerializerTests
std_string.cpp
)
target_link_libraries(JsonSerializerTests catch)
target_link_libraries(JsonSerializerTests
ArduinoJson
catch
)
add_test(JsonSerializer JsonSerializerTests)