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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
|
diff --git a/fbx/src/CMakeLists.txt b/fbx/src/CMakeLists.txt
index 8a6b278..594ffa5 100644
--- a/fbx/src/CMakeLists.txt
+++ b/fbx/src/CMakeLists.txt
@@ -27,14 +27,7 @@ PRIVATE
target_link_libraries(usdFbx
PRIVATE
- tf
- sdf
- usd
- usdGeom
- usdSkel
- usdShade
- usdUtils
- arch
+ usd_ms
fileformatUtils
fbxsdk::fbxsdk
)
diff --git a/fbx/tests/CMakeLists.txt b/fbx/tests/CMakeLists.txt
index fe745ca..b1010a3 100644
--- a/fbx/tests/CMakeLists.txt
+++ b/fbx/tests/CMakeLists.txt
@@ -7,7 +7,7 @@ usd_plugin_compile_config(fbxSanityTests)
target_link_libraries(fbxSanityTests
PRIVATE
- usd
+ usd_ms
GTest::gtest
GTest::gtest_main
)
diff --git a/gltf/src/CMakeLists.txt b/gltf/src/CMakeLists.txt
index 267d488..4a6e071 100644
--- a/gltf/src/CMakeLists.txt
+++ b/gltf/src/CMakeLists.txt
@@ -31,10 +31,7 @@ PRIVATE
target_link_libraries(usdGltf
PRIVATE
- usd
- usdGeom
- usdSkel
- usdShade
+ usd_ms
tinygltf::tinygltf
Threads::Threads
fileformatUtils
@@ -141,4 +138,4 @@ if(USDGLTF_ENABLE_INSTALL)
RENAME plugInfo.json
COMPONENT Runtime
)
-endif()
\ No newline at end of file
+endif()
diff --git a/gltf/tests/CMakeLists.txt b/gltf/tests/CMakeLists.txt
index d63856f..afbd1ea 100644
--- a/gltf/tests/CMakeLists.txt
+++ b/gltf/tests/CMakeLists.txt
@@ -6,7 +6,7 @@ usd_plugin_compile_config(gltfSanityTests)
target_link_libraries(gltfSanityTests
PRIVATE
- usd
+ usd_ms
GTest::gtest
GTest::gtest_main
)
diff --git a/obj/src/CMakeLists.txt b/obj/src/CMakeLists.txt
index 37a9d13..9d7ea9e 100644
--- a/obj/src/CMakeLists.txt
+++ b/obj/src/CMakeLists.txt
@@ -27,12 +27,7 @@ PRIVATE
target_link_libraries(usdObj
PUBLIC
- tf
- sdf
- usd
- usdGeom
- usdSkel
- usdShade
+ usd_ms
fileformatUtils
fmt::fmt
FastFloat::fast_float
diff --git a/obj/tests/CMakeLists.txt b/obj/tests/CMakeLists.txt
index 56f1bef..64a5688 100644
--- a/obj/tests/CMakeLists.txt
+++ b/obj/tests/CMakeLists.txt
@@ -6,7 +6,7 @@ usd_plugin_compile_config(objSanityTests)
target_link_libraries(objSanityTests
PRIVATE
- usd
+ usd_ms
GTest::gtest
GTest::gtest_main
)
diff --git a/ply/src/CMakeLists.txt b/ply/src/CMakeLists.txt
index 788207b..9c696c0 100644
--- a/ply/src/CMakeLists.txt
+++ b/ply/src/CMakeLists.txt
@@ -25,12 +25,7 @@ PRIVATE
target_link_libraries(usdPly
PRIVATE
- tf
- sdf
- usd
- usdGeom
- usdSkel
- usdShade
+ usd_ms
happly::happly
fileformatUtils
)
diff --git a/ply/tests/CMakeLists.txt b/ply/tests/CMakeLists.txt
index 640d37f..ee49807 100644
--- a/ply/tests/CMakeLists.txt
+++ b/ply/tests/CMakeLists.txt
@@ -6,7 +6,7 @@ usd_plugin_compile_config(plySanityTests)
target_link_libraries(plySanityTests
PRIVATE
- usd
+ usd_ms
GTest::gtest
GTest::gtest_main
)
diff --git a/stl/src/CMakeLists.txt b/stl/src/CMakeLists.txt
index bcda4d0..4b31548 100644
--- a/stl/src/CMakeLists.txt
+++ b/stl/src/CMakeLists.txt
@@ -25,15 +25,7 @@ PRIVATE
target_link_libraries(usdStl
PRIVATE
- tf
- vt
- sdf
- usd
- usdGeom
- usdSkel
- usdShade
- usdLux
- usdUtils
+ usd_ms
fileformatUtils
)
diff --git a/stl/tests/CMakeLists.txt b/stl/tests/CMakeLists.txt
index 3d02e75..37fa914 100644
--- a/stl/tests/CMakeLists.txt
+++ b/stl/tests/CMakeLists.txt
@@ -6,7 +6,7 @@ usd_plugin_compile_config(stlSanityTests)
target_link_libraries(stlSanityTests
PRIVATE
- usd
+ usd_ms
GTest::gtest
GTest::gtest_main
)
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt
index f8f45d4..2fff618 100644
--- a/utils/CMakeLists.txt
+++ b/utils/CMakeLists.txt
@@ -60,17 +60,7 @@ target_include_directories(fileformatUtils
target_link_libraries(fileformatUtils
PUBLIC
OpenImageIO::OpenImageIO
- tf
- sdf
- usd
- usdGeom
- usdLux
- usdRender
- usdSkel
- usdShade
- usdUtils
- usdVol
- arch
+ usd_ms
ZLIB::ZLIB
)
|