CMakeLists.txt 321 B

12345678910111213141516171819
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2023
  3. # MIT License
  4. add_executable(JsonVariantTests
  5. as.cpp
  6. compare.cpp
  7. copy.cpp
  8. is.cpp
  9. or.cpp
  10. printTo.cpp
  11. set_get.cpp
  12. subscript.cpp
  13. success.cpp
  14. undefined.cpp
  15. )
  16. target_link_libraries(JsonVariantTests catch)
  17. add_test(JsonVariant JsonVariantTests)