CMakeLists.txt 288 B

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