forked from raknet-python/raknet-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconanfile.py
More file actions
50 lines (38 loc) · 1.34 KB
/
conanfile.py
File metadata and controls
50 lines (38 loc) · 1.34 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
from conan import ConanFile
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout, CMakeDeps
__version__ = "0.3.1.dev1"
class RakNetPythonRecipe(ConanFile):
name = "raknet-python"
version = __version__
package_type = "shared-library"
# Optional metadata
license = "BSD-3-Clause"
url = "https://github.com/wu-vincent/raknet-python"
homepage = "https://github.com/wu-vincent/raknet-python"
description = "Python bindings for the RakNet network library"
topics = ("python", "raknet", "network")
# Binary configuration
settings = "os", "compiler", "build_type", "arch"
options = {}
default_options = {"raknet/*:shared": False}
exports_sources = "CMakeLists.txt", "src/*", "include/*"
def requirements(self):
self.requires("raknet/4.081")
self.requires("pybind11/2.11.1")
# self.test_requires("gtest/1.14.0")
def layout(self):
cmake_layout(self)
def generate(self):
deps = CMakeDeps(self)
deps.generate()
tc = CMakeToolchain(self)
tc.generate()
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
def package(self):
cmake = CMake(self)
cmake.install()
def package_info(self):
self.cpp_info.requires = ["raknet::raknet", "pybind11::headers"]