CMakeLists.txt 385 B

1234567891011121314151617181920212223
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2019
  3. # MIT License
  4. add_executable(JsonArrayTests
  5. add.cpp
  6. copyArray.cpp
  7. createNested.cpp
  8. equals.cpp
  9. get.cpp
  10. isNull.cpp
  11. iterator.cpp
  12. memoryUsage.cpp
  13. nesting.cpp
  14. remove.cpp
  15. size.cpp
  16. std_string.cpp
  17. subscript.cpp
  18. undefined.cpp
  19. )
  20. target_link_libraries(JsonArrayTests catch)
  21. add_test(JsonArray JsonArrayTests)