CMakeLists.txt 704 B

12345678910111213141516171819202122232425262728293031
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2022, Benoit BLANCHON
  3. # MIT License
  4. add_executable(MixedConfigurationTests
  5. decode_unicode_0.cpp
  6. decode_unicode_1.cpp
  7. enable_alignment_0.cpp
  8. enable_alignment_1.cpp
  9. enable_comments_0.cpp
  10. enable_comments_1.cpp
  11. enable_infinity_0.cpp
  12. enable_infinity_1.cpp
  13. enable_nan_0.cpp
  14. enable_nan_1.cpp
  15. enable_progmem_1.cpp
  16. enable_string_deduplication_0.cpp
  17. enable_string_deduplication_1.cpp
  18. issue1707.cpp
  19. use_double_0.cpp
  20. use_double_1.cpp
  21. )
  22. set_target_properties(MixedConfigurationTests PROPERTIES UNITY_BUILD OFF)
  23. add_test(MixedConfiguration MixedConfigurationTests)
  24. set_tests_properties(MixedConfiguration
  25. PROPERTIES
  26. LABELS "Catch"
  27. )