CMakeLists.txt 660 B

12345678910111213141516
  1. # catch2 is distributed as a standalone header.
  2. #
  3. # Downloaded from:
  4. #
  5. # https://github.com/catchorg/Catch2/releases/download/v2.13.9/catch.hpp
  6. #
  7. # The following changes were made to always print in microseconds, fixed format:
  8. #
  9. # - explicit Duration(double inNanoseconds, Unit units = Unit::Auto)
  10. # + explicit Duration(double inNanoseconds, Unit units = Unit::Microseconds)
  11. #
  12. # - return os << duration.value() << ' ' << duration.unitsAsString();
  13. # + return os << std::fixed << duration.value() << ' ' << duration.unitsAsString();
  14. add_library(catch2 INTERFACE)
  15. target_include_directories(catch2 INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})