forked from wetadigital/USDPluginExamples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
58 lines (44 loc) · 786 Bytes
/
CMakeLists.txt
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
usd_library(usdTri
PUBLIC_HEADERS_INSTALL_PREFIX
${ORGANIZATION}
PYTHON_INSTALL_PREFIX
${ORGANIZATION}
LIBRARIES
js
plug
tf
sdf
vt
gf
usd
usdGeom
arch
PUBLIC_CLASSES
triangle
PUBLIC_HEADERS
api.h
tokens.h
CPPFILES
tokens.cpp
PYTHON_CPPFILES
moduleDeps.cpp
PYMODULE_CPPFILES
module.cpp
wrapTokens.cpp
wrapTriangle.cpp
PYTHON_FILES
__init__.py
RESOURCE_FILES
generatedSchema.usda
plugInfo.json
)
usd_executable(triangleCounter
CPPFILES
triangleCounter.cpp
LIBRARIES
tf
sdf
usd
usdTri
)
add_subdirectory(tests)