forked from ryanhaining/cppitertools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconanfile.py
35 lines (29 loc) · 1.21 KB
/
conanfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from conans import ConanFile, CMake
import os
class CppIterTools(ConanFile):
name = "cppitertools"
version = "2.0"
author = "Ryan Haining <[email protected]>"
homepage = "https://github.com/ryanhaining/cppitertools"
url = homepage
topics = ("conan", "itertools", "cppitertools")
license = 'BSD 2-Clause "Simplified" License'
description = "Range-based for loop add-ons inspired by the Python builtins and itertools library. " \
"Like itertools and the Python3 builtins, this library uses lazy evaluation wherever possible."
settings = "build_type", "compiler", "os", "arch"
generators = "cmake", "cmake_find_package", "cmake_paths"
exports = "LICENSE.md"
exports_sources = list()
for file in os.listdir("."):
if file.endswith(".hpp"):
exports_sources.append(str(file))
print("found files: " + str(exports_sources))
exports_sources = tuple(exports_sources) + \
("internal/*", "CMakeLists.txt", "cmake/dummy-config.cmake.in")
no_copy_source = True
def package(self):
cmake = CMake(self)
cmake.configure()
cmake.install()
def package_id(self):
self.info.header_only()