-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
CMakeLists.txt
549 lines (479 loc) · 11.9 KB
/
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
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
set(PXR_PREFIX pxr/usd)
set(PXR_PACKAGE sdf)
pxr_library(sdf
LIBRARIES
arch
tf
gf
pegtl
trace
ts
vt
work
ar
${TBB_tbb_LIBRARY}
INCLUDE_DIRS
${TBB_INCLUDE_DIRS}
PUBLIC_CLASSES
abstractData
allowed
assetPath
attributeSpec
changeBlock
changeList
children
childrenPolicies
childrenProxy
childrenUtils
childrenView
cleanupEnabler
copyUtils
data
declareHandles
fileFormat
identity
layer
layerOffset
layerStateDelegate
layerTree
layerUtils
listProxy
listEditor
listEditorProxy
listOp
mapEditProxy
mapEditor
namespaceEdit
notice
opaqueValue
path
pathExpression
pathExpressionEval
pathNode
pathPattern
pathTable
payload
pool
predicateExpression
predicateLibrary
primSpec
propertySpec
proxyPolicies
proxyTypes
pseudoRootSpec
reference
relationshipSpec
schema
site
siteUtils
spec
specType
textFileFormat
timeCode
tokens
types
valueTypeName
variableExpression
variantSetSpec
variantSpec
PYTHON_PUBLIC_CLASSES
pyChildrenProxy
pyChildrenView
pyListEditorProxy
pyListOp
pyListProxy
pyMapEditProxy
pySpec
pyUtils
PUBLIC_HEADERS
api.h
accessorHelpers.h
declareSpec.h
layerHints.h
pathPatternParser.h
predicateExpressionParser.h
predicateProgram.h
schemaTypeRegistration.h
PRIVATE_CLASSES
assetPathResolver
changeManager
cleanupTracker
connectionListEditor
debugCodes
fileFormatRegistry
fileIO
fileIO_Common
layerRegistry
listOpListEditor
parserHelpers
parserValueContext
pathParser
subLayerListEditor
textFileFormatParser
textParserContext
textParserHelpers
valueTypeRegistry
variableExpressionImpl
variableExpressionParser
vectorListEditor
PRIVATE_HEADERS
instantiatePool.h
valueTypePrivate.h
PYTHON_CPPFILES
moduleDeps.cpp
PYMODULE_CPPFILES
module.cpp
wrapArrayAssetPath.cpp
wrapArrayPath.cpp
wrapArrayTimeCode.cpp
wrapAssetPath.cpp
wrapAttributeSpec.cpp
wrapChangeBlock.cpp
wrapCleanupEnabler.cpp
wrapCopyUtils.cpp
wrapFileFormat.cpp
wrapLayer.cpp
wrapLayerOffset.cpp
wrapLayerTree.cpp
wrapNamespaceEdit.cpp
wrapNotice.cpp
wrapOpaqueValue.cpp
wrapPath.cpp
wrapPathExpression.cpp
wrapPathPattern.cpp
wrapPayload.cpp
wrapPredicateExpression.cpp
wrapPredicateFunctionResult.cpp
wrapPrimSpec.cpp
wrapPropertySpec.cpp
wrapPseudoRootSpec.cpp
wrapRelationshipSpec.cpp
wrapReference.cpp
wrapSpec.cpp
wrapVariableExpression.cpp
wrapTimeCode.cpp
wrapTypes.cpp
wrapValueTypeName.cpp
wrapVariantSpec.cpp
wrapVariantSetSpec.cpp
PYMODULE_FILES
__init__.py
RESOURCE_FILES
plugInfo.json
DOXYGEN_FILES
overview.dox
doxygen/fileFormatPlugin.dox
doxygen/variableExpressions.dox
)
pxr_test_scripts(
testenv/testSdfAssetPath.py
testenv/testSdfAttribute.py
testenv/testSdfAttributeBlocking.py
testenv/testSdfBatchNamespaceEdit.py
testenv/testSdfFileFormatCapabilities.py
testenv/testSdfCopyUtils.py
testenv/testSdfCustomLayerData.py
testenv/testSdfDetachedLayer.py
testenv/testSdfFileFormat.py
testenv/testSdfLayer.py
testenv/testSdfLayerMuting.py
testenv/testSdfListOp.py
testenv/testSdfParsing.py
testenv/testSdfPath.py
testenv/testSdfPath2.py
testenv/testSdfPath2Construct.py
testenv/testSdfPathExpression.py
testenv/testSdfPayload.py
testenv/testSdfPrim.py
testenv/testSdfReference.py
testenv/testSdfRelocates.py
testenv/testSdfSpecHash.py
testenv/testSdfTimeCode.py
testenv/testSdfTypes.py
testenv/testSdfVariableExpression.py
testenv/testSdfVariants.py
)
pxr_build_test_shared_lib(TestSdfFileFormatCapabilities
INSTALL_PREFIX SdfPlugins
LIBRARIES
sdf
tf
CPPFILES
testenv/TestSdfFileFormatCapabilities.cpp
)
pxr_build_test_shared_lib(TestSdfLayerExceptionHandling
INSTALL_PREFIX SdfPlugins
LIBRARIES
sdf
tf
CPPFILES
testenv/TestSdfLayerExceptionHandling.cpp
)
pxr_build_test_shared_lib(TestSdfNoAssetFileFormat
INSTALL_PREFIX SdfPlugins
LIBRARIES
sdf
tf
CPPFILES
testenv/TestSdfNoAssetFileFormat.cpp
)
pxr_build_test_shared_lib(TestSdfStreamingFileFormat
INSTALL_PREFIX SdfPlugins
LIBRARIES
sdf
tf
CPPFILES
testenv/TestSdfStreamingFileFormat.cpp
)
pxr_build_test_shared_lib(TestSdfTargetFileFormat
INSTALL_PREFIX SdfPlugins
LIBRARIES
sdf
tf
CPPFILES
testenv/TestSdfTargetFileFormat.cpp
)
pxr_build_test_shared_lib(TestSdfResolver
INSTALL_PREFIX SdfPlugins
LIBRARIES
ar
sdf
tf
CPPFILES
testenv/TestSdfResolver.cpp
)
pxr_build_test(testSdfAttributeBlocking_Cpp
LIBRARIES
sdf
CPPFILES
testenv/testSdfAttributeBlocking.cpp
)
pxr_build_test(testSdfHardToReach
LIBRARIES
sdf
CPPFILES
testenv/testSdfHardToReach.cpp
)
pxr_build_test(testSdfLayerHints
LIBRARIES
sdf
CPPFILES
testenv/testSdfLayerHints.cpp
)
pxr_build_test(testSdfMetaDataPlugInfo
LIBRARIES
sdf
CPPFILES
testenv/testSdfMetaDataPlugInfo.cpp
)
pxr_build_test(testSdfPathExpression_Cpp
LIBRARIES
sdf
CPPFILES
testenv/testSdfPathExpression.cpp
)
pxr_build_test(testSdfPathParser
LIBRARIES
sdf
CPPFILES
testenv/testSdfPathParser.cpp
)
pxr_build_test(testSdfPathTable
LIBRARIES
sdf
CPPFILES
testenv/testSdfPathTable.cpp
)
pxr_build_test(testSdfPathThreading
LIBRARIES
sdf
tf
CPPFILES
testenv/testSdfPathThreading.cpp
)
pxr_build_test(testSdfPredicateExpression_Cpp
LIBRARIES
sdf
tf
CPPFILES
testenv/testSdfPredicateExpression.cpp
)
pxr_build_test(testSdfTextFileFormatParsing
LIBRARIES
sdf
tf
CPPFILES
testenv/testSdfTextFileFormatParsing.cpp
)
pxr_install_test_dir(
SRC testenv/testSdfBatchNamespaceEdit.testenv
DEST testSdfBatchNamespaceEdit/testSdfBatchNamespaceEdit.testenv
)
pxr_install_test_dir(
SRC testenv/testSdfCustomLayerData.testenv
DEST testSdfCustomLayerData/testSdfCustomLayerData.testenv
)
pxr_install_test_dir(
SRC testenv/testSdfLayerHints.testenv
DEST testSdfLayerHints/testSdfLayerHints.testenv
)
pxr_install_test_dir(
SRC testenv/testSdfLayerMuting.testenv
DEST testSdfLayerMuting/testSdfLayerMuting.testenv
)
pxr_install_test_dir(
SRC testenv/testSdfMetaDataPlugInfo.testenv
DEST testSdfMetaDataPlugInfo/testSdfMetaDataPlugInfo.testenv
)
pxr_install_test_dir(
SRC testenv/testSdfParsing.testenv
DEST testSdfParsing/testSdfParsing.testenv
)
pxr_register_test(testSdfAssetPath
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfAssetPath"
)
pxr_register_test(testSdfAttribute
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfAttribute"
)
pxr_register_test(testSdfAttributeBlocking
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfAttributeBlocking"
)
pxr_register_test(testSdfAttributeBlocking_Cpp
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfAttributeBlocking_Cpp"
)
pxr_register_test(testSdfBatchNamespaceEdit
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfBatchNamespaceEdit"
)
pxr_register_test(testSdfCopyUtils
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfCopyUtils"
)
pxr_register_test(testSdfCustomLayerData
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfCustomLayerData"
)
pxr_register_test(testSdfDetachedLayer
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfDetachedLayer"
)
pxr_register_test(testSdfDetachedLayerEnvVar1
PYTHON
ENV
SDF_LAYER_INCLUDE_IN_MEMORY=*
SDF_LAYER_EXCLUDE_IN_MEMORY=foo,bar
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfDetachedLayer"
)
pxr_register_test(testSdfDetachedLayerEnvVar2
PYTHON
ENV
SDF_LAYER_INCLUDE_IN_MEMORY=foo,bar
SDF_LAYER_EXCLUDE_IN_MEMORY=baz,garply
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfDetachedLayer"
)
pxr_register_test(testSdfHardToReach
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfHardToReach"
)
pxr_register_test(testSdfFileFormat
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfFileFormat"
)
pxr_register_test(testSdfFileFormatCapabilities
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfFileFormatCapabilities"
)
pxr_register_test(testSdfLayer
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfLayer"
)
pxr_register_test(testSdfLayerHints
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfLayerHints"
)
pxr_register_test(testSdfLayerMuting
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfLayerMuting"
)
pxr_register_test(testSdfListOp
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfListOp"
)
pxr_register_test(testSdfMetaDataPlugInfo
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfMetaDataPlugInfo"
)
pxr_register_test(testSdfPathExpression
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfPathExpression"
)
pxr_register_test(testSdfPathExpression_Cpp
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfPathExpression_Cpp"
)
pxr_register_test(testSdfParsing
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfParsing"
)
pxr_register_test(testSdfPath
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfPath"
)
pxr_register_test(testSdfPath2
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfPath2"
)
pxr_register_test(testSdfPath2Construct
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfPath2Construct"
)
pxr_register_test(testSdfPathParser
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfPathParser"
)
pxr_register_test(testSdfPathTable
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfPathTable"
)
pxr_register_test(testSdfPathThreading
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfPathThreading"
)
pxr_register_test(testSdfPredicateExpression_Cpp
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfPredicateExpression_Cpp"
)
pxr_register_test(testSdfTextFileFormatParsing
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfTextFileFormatParsing"
)
pxr_register_test(testSdfPayload
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfPayload"
)
pxr_register_test(testSdfPrim
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfPrim"
)
pxr_register_test(testSdfReference
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfReference"
)
pxr_register_test(testSdfRelocates
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfRelocates"
)
pxr_register_test(testSdfSpecHash
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfSpecHash"
)
pxr_register_test(testSdfTimeCode
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfTimeCode"
)
pxr_register_test(testSdfTypes
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfTypes"
)
pxr_register_test(testSdfVariableExpression
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfVariableExpression"
)
pxr_register_test(testSdfVariants
PYTHON
COMMAND "${CMAKE_INSTALL_PREFIX}/tests/testSdfVariants"
)