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 d10f91b commit 674839bCopy full SHA for 674839b
conanfile.py
@@ -8,16 +8,14 @@ class QtBasemapPluginConan(ConanFile):
8
license = 'LGPL3'
9
url = 'http://code.qt.io/cgit/qt/qtlocation.git/tree/src/plugins/geoservices/mapbox?h=5.10'
10
description = 'Qt GeoServices plugin for basemaps including MapBox'
11
- options = {'shared': [True, False]}
12
- default_options = 'shared=True'
13
settings = 'os', 'compiler', 'build_type', 'arch'
14
generators = 'cmake'
15
exports_sources = ['CMakeLists.txt', 'src/*']
16
17
def build(self):
18
cmake = CMake(self, parallel=True)
19
cmake_args = {
20
- '-DBUILD_SHARED_LIBS=': 'ON' if self.options.shared else 'OFF'
+ 'BUILD_SHARED_LIBS': True
21
}
22
23
if(tools.cross_building(self.settings) and
0 commit comments