Skip to content

Commit

Permalink
Initial conanfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
a-human-bean authored and krzysztof-jusiak committed Mar 21, 2020
1 parent f022d0e commit 8a16f76
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions conanfile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from conans import ConanFile, CMake


class BoostUT(ConanFile):
name = "UT"
version = "latest"
url = "https://github.com/boost-experimental/ut"
license = "Boost"
description = "[Boost].UT C++17/20 μ(micro)/Unit Testing Framework"
settings = "os", "compiler", "arch", "build_type"
exports_sources = "include/*"
no_copy_source = True

def package(self):
self.copy("*.hpp")

0 comments on commit 8a16f76

Please sign in to comment.