-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathconanfile.py
40 lines (31 loc) · 1.29 KB
/
conanfile.py
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
from conan import ConanFile
from conan.tools.files import copy, get
from conan.tools.layout import basic_layout
import os
required_conan_version = ">=1.50.0"
class NuklearConan(ConanFile):
name = "nuklear"
description = "A single-header ANSI C immediate mode cross-platform GUI library."
license = ["MIT", "Unlicense"]
topics = ("gui", "header-only")
homepage = "https://github.com/Immediate-Mode-UI/Nuklear"
url = "https://github.com/conan-io/conan-center-index"
package_type = "header-library"
settings = "os", "arch", "compiler", "build_type"
no_copy_source = True
def layout(self):
basic_layout(self, src_folder="src")
def package_id(self):
self.info.clear()
def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)
def build(self):
pass
def package(self):
copy(self, "LICENSE", src=os.path.join(self.source_folder, "src"), dst=os.path.join(self.package_folder, "licenses"))
copy(self, "nuklear.h", src=self.source_folder, dst=os.path.join(self.package_folder, "include"))
def package_info(self):
self.cpp_info.bindirs = []
self.cpp_info.libdirs = []
if self.settings.os in ["Linux", "FreeBSD"]:
self.cpp_info.system_libs.append("m")