-
Notifications
You must be signed in to change notification settings - Fork 0
/
conanfile.py
28 lines (24 loc) · 860 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
from conan import ConanFile
from conan.tools.cmake import cmake_layout
class Gaboot(ConanFile):
settings = "os", "compiler", "build_type", "arch"
generators = "CMakeDeps", "CMakeToolchain"
default_options = {
"drogon/*:shared": False,
"drogon/*:with_ctl": True,
"drogon/*:with_orm": True,
"drogon/*:with_boost": True,
"drogon/*:with_mysql": False,
"drogon/*:with_redis": False,
"drogon/*:with_brotli": False,
"drogon/*:with_sqlite": False,
"drogon/*:with_profile": False,
"drogon/*:with_postgres": True,
"drogon/*:with_yaml_cpp": False
}
def requirements(self):
self.requires("drogon/1.9.3")
self.requires("opencv/4.9.0")
self.requires("libxml2/[>=2.12.5 <3]", override=True)
def layout(self):
cmake_layout(self)