-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconanfile.py
53 lines (46 loc) · 2.01 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
51
52
53
import json, os
from conans import ConanFile, CMake, tools
class LS50RemoteConan(ConanFile):
jsonInfo = json.loads(tools.load("info.json"))
name = jsonInfo["projectName"]
version = "%u.%u.%u%s" % (jsonInfo["version"]["major"], jsonInfo["version"]["minor"], jsonInfo["version"]["patch"], "-SNAPSHOT" if jsonInfo["version"]["snapshot"] else "")
license = jsonInfo["license"]
url = jsonInfo["repository"]
description = jsonInfo["projectDescription"]
author = jsonInfo["vendor"]
homepage = jsonInfo["repository"]
requires = "Qt/[>=5.10]@tereius/stable"
settings = {"os": ["Windows"], "compiler": None, "build_type": None, "arch": None}
options = {"portable": [True, False]}
default_options = "portable=True", "Qt:shared=True", "Qt:qtbase=True", "Qt:GUI=True", "Qt:qttranslations=True", "Qt:qttools=True", "Qt:qtsvg=True", "Qt:widgets=True", "Qt:qtdeclarative=True", "Qt:qtgraphicaleffects=True", "Qt:qtquickcontrols2=True"
generators = "cmake"
exports = "info.json"
exports_sources = "*"
def configure_cmake(self):
cmake = CMake(self)
if self.options.portable:
cmake.definitions["APP_PORTABLE_MODE"] = True
cmake.definitions["CPACK_GENERATOR"] = "ZIP"
else:
cmake.definitions["APP_PORTABLE_MODE"] = False
cmake.definitions["CPACK_GENERATOR"] = "NSIS"
cmake.configure()
return cmake
def build_requirements(self):
if self.settings.os == "Windows" and not self.options.portable:
self.build_requires("NSIS/3.03@tereius/stable")
def build(self):
cmake = self.configure_cmake()
cmake.build()
def package(self):
cmake = self.configure_cmake()
cmake.build(target="PACKAGE")
if self.options.portable:
self.copy("LS50Remote.zip")
else:
self.copy("LS50Remote.exe")
def deploy(self):
if self.options.portable:
self.copy("LS50Remote.zip")
else:
self.copy("LS50Remote.exe")