-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconanfile.py
37 lines (29 loc) · 999 Bytes
/
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
36
37
from conan import ConanFile
from conan.tools.cmake import CMakeDeps, CMake
import sys
class Pybind11ExampleConan(ConanFile):
name = "hello-pybind11"
version = "0.0.1"
description = "a pybind11 example"
# Binary configuration
settings = "os", "compiler", "build_type", "arch"
options = {"shared": [True, False], "fPIC": [True, False]}
default_options = {"shared": False, "fPIC": True}
generators = "CMakeToolchain"
def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC
def configure(self):
print("Conan: python path: %s" % sys.executable)
print("Conan: python version: %s" % sys.version)
def requirements(self):
self.requires("pybind11/2.10.1")
def generate(self):
cmake = CMakeDeps(self)
cmake.generate()
def build(self):
cmake = CMake(self)
cmake.verbose = True
cmake.configure()
cmake.build()
cmake.install()