-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.py
More file actions
62 lines (50 loc) · 1.14 KB
/
package.py
File metadata and controls
62 lines (50 loc) · 1.14 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name = "usd"
version = "23.08"
description = """
Universal Scene Description (USD) is an efficient, scalable system for authoring, reading, and streaming
time-sampled scene description for interchange between graphics applications.
"""
authors = [
"Pixar",
]
requires = [
"boost-1.70+",
"cmake-3",
"gcc-6.3+",
"tbb-2020<2021",
]
variants = [
[
"platform-linux",
],
]
tools = [
"sdfdump",
"sdffilter",
"testusdview",
"usdcat",
"usdchecker",
"usddiff",
"usddumpcrate",
"usdedit",
"usdGenSchema",
"usdrecord",
"usdresolve",
"usdstitch",
"usdstitchclips",
"usdtree",
"usdview",
"usdzip",
]
build_system = "cmake"
with scope("config") as config:
config.build_thread_count = "logical_cores"
def commands():
env.PATH.prepend("{root}/bin")
env.LD_LIBRARY_PATH.prepend("{root}/lib")
# env.PYTHONPATH.prepend("{root}/lib/python")
env.CMAKE_MODULE_PATH.prepend("{root}")
# Helper environment variables.
env.USD_BINARY_PATH.set("{root}/bin")
env.USD_INCLUDE_PATH.set("{root}/include")
env.USD_LIBRARY_PATH.set("{root}/lib")