D | conanfile.py | 2 # -*- coding: utf-8 -*- 8 from conans import ConanFile, CMake, tools 13 license = "Apache-2.0" 17 topics = ("conan", "flatbuffers", "serialization", "rpc", "json-parser") 20 options = {"shared": [True, False], "fPIC": [True, False]} variable in FlatbuffersConan 22 generators = "cmake" 24 …exports_sources = ["CMake/*", "include/*", "src/*", "grpc/*", "CMakeLists.txt", "conan/CMakeLists.… 27 """Wrap the original CMake file to call conan_basic_setup 36 self.options.remove("fPIC") 39 """Create CMake instance and execute configure step [all …]
|