CMakeLists.txt 415 B

123456789101112131415161718
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2019
  3. # MIT License
  4. # we need C++11 for 'long long'
  5. set(CMAKE_CXX_STANDARD 11)
  6. add_executable(MixedConfigurationTests
  7. decode_unicode_0.cpp
  8. decode_unicode_1.cpp
  9. use_double_0.cpp
  10. use_double_1.cpp
  11. use_long_long_0.cpp
  12. use_long_long_1.cpp
  13. )
  14. target_link_libraries(MixedConfigurationTests catch)
  15. add_test(MixedConfiguration MixedConfigurationTests)