-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathconanfile.py
More file actions
46 lines (35 loc) · 1.43 KB
/
conanfile.py
File metadata and controls
46 lines (35 loc) · 1.43 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from conans import ConanFile
from conan.tools.cmake import CMakeToolchain, CMake
from conan.tools.layout import cmake_layout
class ParserVerilogConan(ConanFile):
name = "parser-verilog"
version = "0.1"
# Optional metadata
license = "MIT"
author = "Tsung-Wei Huang <twh760812@gmail.com>, Chun-Xun Lin <artiferlly@gmail.com>, Martin Wong"
url = "https://github.com/OpenTimer/Parser-Verilog"
description = "A Standalone Structural Verilog Parser"
topics = ("lex, eda, verilog, cpp17, circuit, computer-aided-design, vlsi-physical-design, electronic-design-automation, vlsi-circuits, bison-yacc")
# 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", "parser-verilog/*"
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 = ["parser-verilog"]