We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2f17c6 commit 3d50ff9Copy full SHA for 3d50ff9
conanfile.py
@@ -29,9 +29,17 @@ def build(self):
29
cmake.configure(source_dir='.', defs=cmake_args)
30
cmake.build(target='install')
31
32
+ def build_requirements(self):
33
+ self.build_requires('Qt5/[5.12.7-2]@pix4d/stable')
34
+
35
def configure(self):
36
del self.settings.compiler.libcxx
37
38
+ def package_id(self):
39
+ # Make all options and dependencies (direct and transitive) contribute
40
+ # to the package id
41
+ self.info.requires.full_package_mode()
42
43
def package_info(self):
44
self.cpp_info.libs = ["qtgeoservices_basemap_pix4d"]
45
self.cpp_info.includedirs = ['include']
0 commit comments