CMakeLists.txt 396 B

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