Stop conan package from installing Catch's helpers

This commit is contained in:
Martin Hořeňovský 2018-06-23 19:03:39 +02:00
parent ed582bde4d
commit 3743295ca8
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ class CatchConan(ConanFile):
cmake = CMake(self)
cmake.definitions["BUILD_TESTING"] = "OFF"
cmake.definitions["CATCH_INSTALL_DOCS"] = "OFF"
cmake.definitions["CATCH_INSTALL_HELPERS"] = "OFF"
cmake.configure()
cmake.install()