Skip to content

Commit

Permalink
Add conanfile after some debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterBindels-TomTom committed Mar 1, 2018
1 parent c15a650 commit 8f05dd6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions conanfile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env python

from conans import ConanFile

class HippomocksConan(ConanFile):
name = "hippomocks-cpp11"
version = "5.0"
license = "LGPLv2"
url = "https://github.com/dascandy/hippomocks"
description = "C++ mocking library"
exports_sources = "*"

def package(self):
# If the CMakeLists.txt has a proper install method, the steps below may be redundant
# If so, you can replace all the steps below with the word "pass"
self.copy(pattern="LICENSE", dst="license")
self.copy(pattern="hippomocks.h", dst="include/HippoMocks", src="SingleInclude")

def package_id(self):
self.info.header_only()

0 comments on commit 8f05dd6

Please sign in to comment.