Upgrade from Conan 1.x to 2.x (#4417)
Conan 1.x is no longer supported - upgrade if you used it for dependency management Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
from conan import ConanFile
|
||||
from conan.tools.files import copy
|
||||
from os import path
|
||||
|
||||
|
||||
class Chatterino(ConanFile):
|
||||
name = "Chatterino"
|
||||
requires = "boost/1.81.0"
|
||||
settings = "os", "compiler", "build_type", "arch"
|
||||
default_options = {
|
||||
"with_benchmark": False,
|
||||
"with_openssl3": False,
|
||||
"openssl*:shared": True,
|
||||
}
|
||||
options = {
|
||||
"with_benchmark": [True, False],
|
||||
# Qt is built with OpenSSL 3 from version 6.5.0 onwards
|
||||
"with_openssl3": [True, False],
|
||||
}
|
||||
generators = "CMakeDeps", "CMakeToolchain"
|
||||
|
||||
def requirements(self):
|
||||
if self.options.get_safe("with_benchmark", False):
|
||||
self.requires("benchmark/1.7.1")
|
||||
|
||||
if self.options.get_safe("with_openssl3", False):
|
||||
self.requires("openssl/3.1.0")
|
||||
else:
|
||||
self.requires("openssl/1.1.1t")
|
||||
|
||||
def generate(self):
|
||||
copy_bin = lambda dep, selector, subdir: copy(
|
||||
self,
|
||||
selector,
|
||||
dep.cpp_info.bindirs[0],
|
||||
path.join(self.build_folder, subdir),
|
||||
keep_path=False,
|
||||
)
|
||||
for dep in self.dependencies.values():
|
||||
# macOS
|
||||
copy_bin(dep, "*.dylib", "bin")
|
||||
# Windows
|
||||
copy_bin(dep, "*.dll", "bin")
|
||||
copy_bin(dep, "*.dll", "Chatterino2") # used in CI
|
||||
# Linux
|
||||
copy(
|
||||
self,
|
||||
"*.so*",
|
||||
dep.cpp_info.libdirs[0],
|
||||
path.join(self.build_folder, "bin"),
|
||||
keep_path=False,
|
||||
)
|
||||
Reference in New Issue
Block a user