加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
conanfile.py 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
from conan import ConanFile
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout
class LibgnurxConan(ConanFile):
name = "libgnurx"
version = "2.9.0"
# Optional metadata
license = "LGPL-2.1"
author = "unknown"
url = "https://gitee.com/l0km/libgnurx"
description = "GNU Regex for Windows 2.9"
topics = ("regex", "gnu")
package_type = "library"
# Binary configuration
settings = "os", "compiler", "build_type", "arch"
options = {"shared": [True, False], "fPIC": [True, False]}
default_options = {"shared": False, "fPIC": True}
# Sources are located in the same place as this recipe, copy them to the recipe
exports_sources = "CMakeLists.txt", "src/*"
package_type = "library"
def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC
def layout(self):
cmake_layout(self)
def generate(self):
tc = CMakeToolchain(self)
tc.generate()
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
def package(self):
cmake = CMake(self)
cmake.install()
def package_info(self):
self.cpp_info.libs = ["libgnurx"]
def configure(self):
del self.settings.compiler.libcxx
del self.settings.compiler.cppstd
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化