-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconanfile.py
50 lines (44 loc) · 1.69 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from conans import ConanFile, tools
# automatically choose Premake generator
def run_premake(self):
if "Visual Studio" in self.settings.compiler:
_visuals = {'8': '2005',
'9': '2008',
'10': '2010',
'11': '2012',
'12': '2013',
'14': '2015',
'15': '2017',
'16': '2019'}
premake_command = "premake5 vs%s" % _visuals.get(str(self.settings.compiler.version), "UnknownVersion %s" % str(self.settings.compiler.version))
self.run(premake_command)
else:
self.run("premake5 gmake2")
class RobotConan(ConanFile):
name = "robot"
version = "master"
license = "<Put the package license here>"
author = "<Put your name here> <And your email here>"
url = "<Package recipe repository url here, for issues about the package>"
description = "<Description of Robot here>"
topics = ("<Put some tag here>", "<here>", "<and here>")
settings = "os", "compiler", "build_type", "arch"
options = {"shared": [True, False]}
default_options = "shared=False"
generators = "premake"
exports = "premake5.lua"
def source(self):
self.run("git clone --depth=1 https://github.com/Robot/robot.git")
def build(self):
run_premake(self)
self.run("build")
def package(self):
self.copy("*.h", dst="include", src="robot/Source")
self.copy("*.lib", dst="lib", keep_path=False)
self.copy("*.dll", dst="bin", keep_path=False)
self.copy("*.so", dst="lib", keep_path=False)
self.copy("*.dylib", dst="lib", keep_path=False)
self.copy("*.a", dst="lib", keep_path=False)
def package_info(self):
self.cpp_info.libs = ["Robot"]
self.cpp_info.system_libs = ["X11", "Xtst", "Xinerama"]