CMakeLists.txt 301 B

1234567891011121314151617
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2019
  3. # MIT License
  4. add_executable(MemberProxyTests
  5. add.cpp
  6. clear.cpp
  7. compare.cpp
  8. containsKey.cpp
  9. remove.cpp
  10. set.cpp
  11. size.cpp
  12. subscript.cpp
  13. )
  14. target_link_libraries(MemberProxyTests catch)
  15. add_test(MemberProxy MemberProxyTests)