CMakeLists.txt 752 B

12345678910111213141516171819202122232425262728293031323334
  1. # ArduinoJson - https://arduinojson.org
  2. # Copyright © 2014-2025, 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. issue1707.cpp
  17. string_length_size_1.cpp
  18. string_length_size_2.cpp
  19. string_length_size_4.cpp
  20. use_double_0.cpp
  21. use_double_1.cpp
  22. use_long_long_0.cpp
  23. use_long_long_1.cpp
  24. )
  25. set_target_properties(MixedConfigurationTests PROPERTIES UNITY_BUILD OFF)
  26. add_test(MixedConfiguration MixedConfigurationTests)
  27. set_tests_properties(MixedConfiguration
  28. PROPERTIES
  29. LABELS "Catch"
  30. )