CMakeLists.txt 366 B

12345678910111213141516171819202122
  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. isNull.cpp
  11. iterator.cpp
  12. remove.cpp
  13. set.cpp
  14. size.cpp
  15. std_string.cpp
  16. subscript.cpp
  17. undefined.cpp
  18. )
  19. target_link_libraries(JsonArrayTests catch)
  20. add_test(JsonArray JsonArrayTests)