CMakeLists.txt 285 B

123456789101112131415161718
  1. # ArduinoJson - arduinojson.org
  2. # Copyright Benoit Blanchon 2014-2019
  3. # MIT License
  4. add_library(catch
  5. catch.hpp
  6. catch.cpp
  7. )
  8. target_include_directories(catch
  9. PUBLIC
  10. ${CMAKE_CURRENT_SOURCE_DIR}
  11. )
  12. target_compile_definitions(catch
  13. PUBLIC
  14. CATCH_INTERNAL_CONFIG_NO_POSIX_SIGNALS
  15. )