forked from hosseinmoein/DataFrame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconanfile.py
More file actions
27 lines (23 loc) · 735 Bytes
/
conanfile.py
File metadata and controls
27 lines (23 loc) · 735 Bytes
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
from conans import ConanFile, CMake
class DataFrameConan(ConanFile):
name = "Dataframe"
version = "1.0.0"
license = "BSD 3-Clause"
url = "https://github.com/hosseinmoein/DataFrame"
description = "R's and Pandas DataFrame in modern C++"
settings = "os", "compiler", "build_type", "arch"
options = {"shared": [True, False]}
default_options = {"shared": False}
generators = "cmake"
exports_sources = "*"
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake.test()
def package(self):
cmake = CMake(self)
cmake.configure()
cmake.install()
def package_info(self):
self.cpp_info.libs = ["Dataframe"]