CMakeLists.txt 273 B

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