CMakeLists.txt 260 B

1234567891011121314
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2019
  3. # MIT License
  4. add_executable(ElementProxyTests
  5. add.cpp
  6. clear.cpp
  7. remove.cpp
  8. set.cpp
  9. size.cpp
  10. )
  11. target_link_libraries(ElementProxyTests catch)
  12. add_test(ElementProxy ElementProxyTests)