Minor - added header-only flag in conan

See header-only guidelines: 
http://conanio.readthedocs.io/en/latest/howtos/header_only.html?highlight=header%20only
Its borderline cosmetic, but it does have a purpose.
This commit is contained in:
solvingj 2017-08-26 13:53:03 -04:00 committed by Martin Hořeňovský
parent 601b2888ec
commit eea9e1efd7
1 changed files with 3 additions and 0 deletions

View File

@ -14,3 +14,6 @@ class CatchConan(ConanFile):
def package(self):
self.copy(pattern="catch.hpp", src="single_include", dst="include")
def package_id(self):
self.info.header_only()