-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
425fa29
commit 20c17f7
Showing
5 changed files
with
21 additions
and
8 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from conans import ConanFile | ||
|
||
class AutocheckConan(ConanFile): | ||
name = 'autocheck' | ||
license = 'MIT' | ||
author = 'John Freeman <jfreeman08@gmail.com>' | ||
url = 'https://github.com/thejohnfreeman/autocheck' | ||
description = 'QuickCheck clone for C++' | ||
topics = ('testing') | ||
build_requires = ( | ||
'Catch2/2.5.0@catchorg/stable', | ||
'gtest/1.8.1@bincrafters/stable', | ||
) | ||
generators = 'cmake_find_package' | ||
exports_sources = 'include/**/*.hpp' | ||
no_copy_source = True | ||
|
||
def package(self): | ||
self.copy('**/*.hpp') |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters