forked from Autodesk/arnold-usd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSConstruct
executable file
·463 lines (385 loc) · 20.8 KB
/
SConstruct
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
# vim: filetype=python
# Copyright 2019 Autodesk, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import glob
import re
import shutil
import sys, os
import platform
from SCons.Script import PathVariable
# Disable warning about Python 2.6 being deprecated
SetOption('warn', 'no-python-version')
# Local helper tools
sys.path = [os.path.abspath(os.path.join('tools'))] + sys.path
from utils import system, configure
from utils.system import IS_WINDOWS, IS_LINUX, IS_DARWIN
from utils.build_tools import *
# Allowed compilers
if IS_WINDOWS:
ALLOWED_COMPILERS = ['msvc', 'icc']
arnold_default_api_lib = os.path.join('$ARNOLD_PATH', 'lib')
else:
ALLOWED_COMPILERS = ['gcc', 'clang']
arnold_default_api_lib = os.path.join('$ARNOLD_PATH', 'bin')
# Scons doesn't provide a string variable
def StringVariable(key, help, default):
# We always get string values, so it's always valid and trivial to convert
return (key, help, default, lambda k, v, e: True, lambda s: s)
# Custom variables definitions
vars = Variables('custom.py')
vars.AddVariables(
EnumVariable('MODE', 'Set compiler configuration', 'opt', allowed_values=('opt', 'debug', 'profile')),
EnumVariable('WARN_LEVEL', 'Set warning level', 'none', allowed_values=('strict', 'warn-only', 'none')),
EnumVariable('COMPILER', 'Set compiler to use', ALLOWED_COMPILERS[0], allowed_values=ALLOWED_COMPILERS),
PathVariable('SHCXX', 'C++ compiler used for generating shared-library objects', None),
PathVariable('ARNOLD_PATH', 'Arnold installation root', os.getenv('ARNOLD_PATH', None), PathVariable.PathIsDir),
PathVariable('ARNOLD_API_INCLUDES', 'Where to find Arnold API includes', os.path.join('$ARNOLD_PATH', 'include'), PathVariable.PathIsDir),
PathVariable('ARNOLD_API_LIB', 'Where to find Arnold API static libraries', arnold_default_api_lib, PathVariable.PathIsDir),
PathVariable('ARNOLD_BINARIES', 'Where to find Arnold API dynamic libraries and executables', os.path.join('$ARNOLD_PATH', 'bin'), PathVariable.PathIsDir),
PathVariable('ARNOLD_PYTHON', 'Where to find Arnold python bindings', os.path.join('$ARNOLD_PATH', 'python'), PathVariable.PathIsDir),
PathVariable('USD_PATH', 'USD installation root', os.getenv('USD_PATH', None)),
PathVariable('USD_INCLUDE', 'Where to find USD includes', os.path.join('$USD_PATH', 'include'), PathVariable.PathIsDir),
PathVariable('USD_LIB', 'Where to find USD libraries', os.path.join('$USD_PATH', 'lib'), PathVariable.PathIsDir),
PathVariable('USD_BIN', 'Where to find USD binaries', os.path.join('$USD_PATH', 'bin'), PathVariable.PathIsDir),
EnumVariable('USD_BUILD_MODE', 'Build mode of USD libraries' , 'monolithic' , allowed_values=('shared_libs', 'monolithic', 'static')),
StringVariable('USD_LIB_PREFIX', 'USD library prefix', '' if IS_WINDOWS else 'lib'),
BoolVariable('USD_1910_UPDATED_COMPOSITOR', 'USD-19.10 has the updated compositor interface', False),
# 'static' will expect a static monolithic library "libusd_m". When doing a monolithic build of USD, this
# library can be found in the build/pxr folder
PathVariable('BOOST_INCLUDE', 'Where to find Boost includes', os.path.join('$USD_PATH', 'include', 'boost-1_61'), PathVariable.PathIsDir),
PathVariable('BOOST_LIB', 'Where to find Boost libraries', '.', PathVariable.PathIsDir),
PathVariable('PYTHON_INCLUDE', 'Where to find Python includes (pyconfig.h)', os.getenv('PYTHON_INCLUDE', None)),
PathVariable('PYTHON_LIB', 'Where to find Python libraries (python27.lib) ', os.getenv('PYTHON_LIB', None)),
PathVariable('TBB_INCLUDE', 'Where to find TBB headers.', os.getenv('TBB_INCLUDE', None)),
PathVariable('TBB_LIB', 'Where to find TBB libraries', os.getenv('TBB_LIB', None)),
BoolVariable('TBB_STATIC', 'Wether we link against a static TBB library', False),
EnumVariable('TEST_ORDER', 'Set the execution order of tests to be run', 'reverse', allowed_values=('normal', 'reverse')),
EnumVariable('SHOW_TEST_OUTPUT', 'Display the test log as it is being run', 'single', allowed_values=('always', 'never', 'single')),
EnumVariable('USE_VALGRIND', 'Enable Valgrinding', 'False', allowed_values=('False', 'True', 'Full')),
BoolVariable('UPDATE_REFERENCE', 'Update the reference log/image for the specified targets', False),
PathVariable('PREFIX', 'Directory to install under', '.', PathVariable.PathIsDirCreate),
PathVariable('PREFIX_PROCEDURAL', 'Directory to install the procedural under.', os.path.join('$PREFIX', 'procedural'), PathVariable.PathIsDirCreate),
PathVariable('PREFIX_RENDER_DELEGATE', 'Directory to install the procedural under.', os.path.join('$PREFIX', 'plugin'), PathVariable.PathIsDirCreate),
PathVariable('PREFIX_HEADERS', 'Directory to install the headers under.', os.path.join('$PREFIX', 'include'), PathVariable.PathIsDirCreate),
PathVariable('PREFIX_LIB', 'Directory to install the libraries under.', os.path.join('$PREFIX', 'lib'), PathVariable.PathIsDirCreate),
PathVariable('PREFIX_BIN', 'Directory to install the binaries under.', os.path.join('$PREFIX', 'bin'), PathVariable.PathIsDirCreate),
PathVariable('PREFIX_DOCS', 'Directory to install the documentation under.', os.path.join('$PREFIX', 'docs'), PathVariable.PathIsDirCreate),
PathVariable('PREFIX_THIRD_PARTY', 'Directory to install the third party modules under.', os.path.join('$PREFIX', 'third_party'), PathVariable.PathIsDirCreate),
BoolVariable('SHOW_PLOTS', 'Display timing plots for the testsuite. gnuplot has to be found in the environment path.', False),
BoolVariable('BUILD_SCHEMAS', 'Wether or not to build the schemas and their wrapper.', True),
BoolVariable('BUILD_RENDER_DELEGATE', 'Wether or not to build the hydra render delegate.', True),
BoolVariable('BUILD_USD_WRITER', 'Wether or not to build the arnold to usd writer tool.', True),
BoolVariable('BUILD_PROCEDURAL', 'Wether or not to build the arnold procedural', True),
BoolVariable('BUILD_TESTSUITE', 'Wether or not to build the testsuite', True),
BoolVariable('BUILD_DOCS', 'Wether or not to build the documentation.', True),
BoolVariable('BUILD_HOUDINI_TOOLS', 'Wether or not to build the Houdini tools.', False),
BoolVariable('DISABLE_CXX11_ABI', 'Disable the use of the CXX11 abi for gcc/clang', False),
BoolVariable('USD_HAS_PYTHON_SUPPORT', 'Wether or not the usd build has python support enabled', False),
BoolVariable('BUILD_FOR_KATANA', 'Wether or not buildinf the plugins for Katana', False),
StringVariable('BOOST_LIB_NAME', 'Boost library name pattern', 'boost_%s'),
StringVariable('USD_MONOLITHIC_LIBRARY', 'Name of the USD monolithic library', 'usd_ms'),
StringVariable('PYTHON_LIB_NAME', 'Name of the python library', 'python27'),
('TEST_PATTERN', 'Glob pattern of tests to be run', 'test_*'),
('KICK_PARAMS', 'Additional parameters for kick', '-v 6')
)
# Create the scons environment
env = Environment(variables = vars, ENV = os.environ, tools = ['default', 'doxygen'])
def get_optional_env_var(env_name):
return env.subst(env[env_name]) if env_name in env else None
BUILD_SCHEMAS = env['BUILD_SCHEMAS']
BUILD_RENDER_DELEGATE = env['BUILD_RENDER_DELEGATE']
BUILD_USD_WRITER = env['BUILD_USD_WRITER']
BUILD_PROCEDURAL = env['BUILD_PROCEDURAL']
BUILD_TESTSUITE = env['BUILD_TESTSUITE']
BUILD_DOCS = env['BUILD_DOCS']
BUILD_HOUDINI_TOOLS = env['BUILD_HOUDINI_TOOLS']
USD_LIB_PREFIX = env['USD_LIB_PREFIX']
env['USD_LIB_AS_SOURCE'] = None
# There are two possible behaviors with USD_LIB_PREFIX, if it starts with 'lib'
# then we have to remove it, since gcc and clang automatically substitutes it on
# non windows platforms. If the prefix does not start with lib, then we have to
# force scons to properly link against libs named in a non-standard way.
if not IS_WINDOWS:
if USD_LIB_PREFIX.startswith('lib'):
USD_LIB_PREFIX = USD_LIB_PREFIX[3:]
else:
# Scons needs this variable, so we can pass uniquely named shared
# objects to link against. This is only required on osx and linux.
env['STATIC_AND_SHARED_OBJECTS_ARE_THE_SAME'] = 1
env['USD_LIB_AS_SOURCE'] = True
env['USD_LIB_PREFIX'] = USD_LIB_PREFIX
# Forcing the build of the procedural when the testsuite is enabled.
if BUILD_TESTSUITE:
BUILD_PROCEDURAL = True
ARNOLD_PATH = env.subst(env['ARNOLD_PATH'])
ARNOLD_API_INCLUDES = env.subst(env['ARNOLD_API_INCLUDES'])
ARNOLD_API_LIB = env.subst(env['ARNOLD_API_LIB'])
ARNOLD_BINARIES = env.subst(env['ARNOLD_BINARIES'])
PREFIX = env.subst(env['PREFIX'])
PREFIX_PROCEDURAL = env.subst(env['PREFIX_PROCEDURAL'])
PREFIX_RENDER_DELEGATE = env.subst(env['PREFIX_RENDER_DELEGATE'])
PREFIX_HEADERS = env.subst(env['PREFIX_HEADERS'])
PREFIX_LIB = env.subst(env['PREFIX_LIB'])
PREFIX_BIN = env.subst(env['PREFIX_BIN'])
PREFIX_DOCS = env.subst(env['PREFIX_DOCS'])
PREFIX_THIRD_PARTY = env.subst(env['PREFIX_THIRD_PARTY'])
USD_PATH = env.subst(env['USD_PATH'])
USD_INCLUDE = env.subst(env['USD_INCLUDE'])
USD_LIB = env.subst(env['USD_LIB'])
USD_BIN = env.subst(env['USD_BIN'])
# Storing values after expansion
env['USD_PATH'] = USD_PATH
env['USD_INCLUDE'] = USD_INCLUDE
env['USD_LIB'] = USD_LIB
env['USD_BIN'] = USD_BIN
# these could be supplied by linux / osx
BOOST_INCLUDE = get_optional_env_var('BOOST_INCLUDE')
BOOST_LIB = get_optional_env_var('BOOST_LIB')
PYTHON_INCLUDE = get_optional_env_var('PYTHON_INCLUDE')
PYTHON_LIB = get_optional_env_var('PYTHON_LIB')
TBB_INCLUDE = get_optional_env_var('TBB_INCLUDE')
TBB_LIB = get_optional_env_var('TBB_LIB')
if env['COMPILER'] == 'clang':
env['CC'] = 'clang'
env['CXX'] = 'clang++'
# force compiler to match SHCXX
if env['SHCXX'] != '$CXX':
env['CXX'] = env['SHCXX']
# Get Arnold version
env['ARNOLD_VERSION'] = get_arnold_version(ARNOLD_API_INCLUDES)
# Get USD Version
env['USD_VERSION'] = get_usd_version(USD_INCLUDE)
if env['COMPILER'] in ['gcc', 'clang'] and env['SHCXX'] != '$CXX':
env['GCC_VERSION'] = os.path.splitext(os.popen(env['SHCXX'] + ' -dumpversion').read())[0]
print("Building Arnold-USD:")
print(" - Build mode: '{}'".format(env['MODE']))
print(" - Host OS: '{}'".format(system.os))
print(" - Arnold version: '{}'".format(env['ARNOLD_VERSION']))
#print(" - Environment:")
#for k, v in os.environ.items():
# print(" {} = {}".format(k,v))
# Platform definitions
if IS_DARWIN:
env.Append(CPPDEFINES = Split('_DARWIN'))
elif IS_LINUX:
env.Append(CPPDEFINES = Split('_LINUX'))
elif IS_WINDOWS:
env.Append(CPPDEFINES = Split('_WINDOWS _WIN32 WIN32'))
env.Append(CPPDEFINES = Split('_WIN64'))
# Adding USD paths to environment for the teststuite
dylib = 'PATH' if IS_WINDOWS else ('DYLD_LIBRARY_PATH' if IS_DARWIN else 'LD_LIBRARY_PATH')
env_separator = ';' if IS_WINDOWS else ':'
env.AppendENVPath(dylib, USD_LIB, envname='ENV', sep=env_separator, delete_existing=1)
env.AppendENVPath(dylib, USD_BIN, envname='ENV', sep=env_separator, delete_existing=1)
env.AppendENVPath('PYTHONPATH', os.path.join(USD_LIB, 'python'), envname='ENV', sep=env_separator, delete_existing=1)
env.AppendENVPath('PXR_PLUGINPATH_NAME', os.path.join(USD_PATH, 'plugin', 'usd'), envname='ENV', sep=env_separator, delete_existing=1)
os.environ['PATH'] = env['ENV']['PATH']
os.putenv('PATH', os.environ['PATH'])
os.environ['PYTHONPATH'] = env['ENV']['PYTHONPATH']
os.putenv('PYTHONPATH', os.environ['PYTHONPATH'])
os.environ['PXR_PLUGINPATH_NAME'] = env['ENV']['PXR_PLUGINPATH_NAME']
os.putenv('PXR_PLUGINPATH_NAME', os.environ['PXR_PLUGINPATH_NAME'])
# Compiler settings
if env['COMPILER'] in ['gcc', 'clang']:
env.Append(CCFLAGS = Split('-fno-operator-names -std=c++11'))
if env['DISABLE_CXX11_ABI']:
env.Append(CCFLAGS = Split('-D_GLIBCXX_USE_CXX11_ABI=0'))
# Warning level
if env['WARN_LEVEL'] == 'none':
env.Append(CCFLAGS = Split('-w'))
else:
env.Append(CCFLAGS = Split('-Wall -Wsign-compare'))
if env['WARN_LEVEL'] == 'strict':
env.Append(CCFLAGS = Split('-Werror'))
# Optimization flags
if env['MODE'] == 'opt' or env['MODE'] == 'profile':
env.Append(CCFLAGS = Split('-O3'))
# Debug and profile flags
if env['MODE'] == 'debug' or env['MODE'] == 'profile':
env.ParseFlags('-DDEBUG')
env.Append(CCFLAGS = Split('-g'))
env.Append(LINKFLAGS = Split('-g'))
env.Append(CCFLAGS = Split('-O0'))
# Linux profiling
if system.os == 'linux' and env['MODE'] == 'profile':
env.Append(CCFLAGS = Split('-pg'))
env.Append(LINKFLAGS = Split('-pg'))
# msvc settings
elif env['COMPILER'] == 'msvc':
env.Append(CCFLAGS=Split('/EHsc'))
env.Append(LINKFLAGS=Split('/Machine:X64'))
env.Append(CCFLAGS=Split('/D "NOMINMAX"'))
# Optimization/profile/debug flags
if env['MODE'] == 'opt':
env.Append(CCFLAGS=Split('/O2 /Oi /Ob2 /MD'))
env.Append(CPPDEFINES=Split('NDEBUG'))
elif env['MODE'] == 'profile':
env.Append(CCFLAGS=Split('/Ob2 /MD /Zi'))
else: # debug mode
env.Append(CCFLAGS=Split('/Od /Zi /MD'))
env.Append(LINKFLAGS=Split('/DEBUG'))
# Add include and lib paths to Arnold
env.Append(CPPPATH = [ARNOLD_API_INCLUDES, USD_INCLUDE])
env.Append(LIBPATH = [ARNOLD_API_LIB, ARNOLD_BINARIES, USD_LIB])
# Add optional include and library paths. These are the standard additional
# libraries required when using USD.
env.Append(CPPPATH = [p for p in [BOOST_INCLUDE, PYTHON_INCLUDE, TBB_INCLUDE] if p is not None])
env.Append(LIBPATH = [p for p in [BOOST_LIB, PYTHON_LIB, TBB_LIB] if p is not None])
# Configure base directory for temp files
BUILD_BASE_DIR = os.path.join('build', '%s_%s' % (system.os, 'x86_64'), '%s_%s' % (env['COMPILER'], env['MODE']), 'usd-%s_arnold-%s' % (env['USD_VERSION'], env['ARNOLD_VERSION']))
env['BUILD_BASE_DIR'] = BUILD_BASE_DIR
# Build target
env['ROOT_DIR'] = os.getcwd()
# Propagate any "library path" environment variable to scons
# if system.os == 'linux':
# add_to_library_path(env, '.')
# if os.environ.has_key('LD_LIBRARY_PATH'):
# add_to_library_path(env, os.environ['LD_LIBRARY_PATH'])
# os.environ['LD_LIBRARY_PATH'] = env['ENV']['LD_LIBRARY_PATH']
# elif system.os == 'darwin':
# if os.environ.has_key('DYLD_LIBRARY_PATH'):
# add_to_library_path(env, os.environ['DYLD_LIBRARY_PATH'])
# elif system.os == 'windows':
# add_to_library_path(env, os.environ['PATH'])
# os.environ['PATH'] = env['ENV']['PATH']
# SCons scripts to build
procedural_script = os.path.join('procedural', 'SConscript')
procedural_build = os.path.join(BUILD_BASE_DIR, 'procedural')
cmd_script = os.path.join('cmd', 'SConscript')
cmd_build = os.path.join(BUILD_BASE_DIR, 'cmd')
schemas_script = os.path.join('schemas', 'SConscript')
schemas_build = os.path.join(BUILD_BASE_DIR, 'schemas')
translator_script = os.path.join('translator', 'SConscript')
translator_build = os.path.join(BUILD_BASE_DIR, 'translator')
renderdelegate_script = os.path.join('render_delegate', 'SConscript')
renderdelegate_build = os.path.join(BUILD_BASE_DIR, 'render_delegate')
renderdelegate_plug_info = os.path.join('render_delegate', 'plugInfo.json')
testsuite_build = os.path.join(BUILD_BASE_DIR, 'testsuite')
# Define targets
# Target for the USD procedural
if BUILD_PROCEDURAL or BUILD_USD_WRITER:
TRANSLATOR = env.SConscript(translator_script,
variant_dir = translator_build,
duplicate = 0, exports = 'env')
SConscriptChdir(0)
else:
TRANSLATOR = None
# Define targets
# Target for the USD procedural
if BUILD_PROCEDURAL:
PROCEDURAL = env.SConscript(procedural_script,
variant_dir = procedural_build,
duplicate = 0, exports = 'env')
SConscriptChdir(0)
Depends(PROCEDURAL, TRANSLATOR[0])
else:
PROCEDURAL = None
if BUILD_SCHEMAS:
SCHEMAS = env.SConscript(schemas_script,
variant_dir = schemas_build,
duplicate = 0, exports = 'env')
SConscriptChdir(0)
else:
SCHEMAS = None
if BUILD_USD_WRITER:
ARNOLD_TO_USD = env.SConscript(cmd_script, variant_dir = cmd_build, duplicate = 0, exports = 'env')
SConscriptChdir(0)
Depends(ARNOLD_TO_USD, TRANSLATOR[0])
else:
ARNOLD_TO_USD = None
if BUILD_RENDER_DELEGATE:
ARNOLDUSD_HEADER = env.Command(os.path.join(BUILD_BASE_DIR, 'arnold_usd.h'), 'arnold_usd.h.in', configure.configure_header_file)
RENDERDELEGATE = env.SConscript(renderdelegate_script, variant_dir = renderdelegate_build, duplicate = 0, exports = 'env')
SConscriptChdir(0)
Depends(RENDERDELEGATE, ARNOLDUSD_HEADER)
else:
ARNOLDUSD_HEADER = None
RENDERDELEGATE = None
#Depends(PROCEDURAL, SCHEMAS)
if BUILD_DOCS:
docs_output = os.path.join(BUILD_BASE_DIR, 'docs')
env['DOXYGEN_TAGS'] = {
'OUTPUT_DIRECTORY': docs_output
}
DOCS = env.Doxygen(source='docs/Doxyfile', target=docs_output)
else:
DOCS = None
# Generating plugInfo.json files so we have the right platform specific
# extension.
plugInfos = [
renderdelegate_plug_info
]
for plugInfo in plugInfos:
env.Command(target=plugInfo, source=['%s.in' % plugInfo],
action=configure.configure_plug_info)
if RENDERDELEGATE:
Depends(RENDERDELEGATE, renderdelegate_plug_info)
if BUILD_TESTSUITE:
env['USD_PROCEDURAL_PATH'] = os.path.abspath(str(PROCEDURAL[0]))
# copy the usd resources to the same path as the procedural
usd_resource_folder = os.path.join(os.path.dirname(os.path.abspath(str(PROCEDURAL[0]))), 'usd')
if os.path.exists(usd_resource_folder) and not os.path.exists(usd_resource_folder):
shutil.copytree(os.path.join(USD_LIB, 'usd'), usd_resource_folder)
# Target for the test suite
TESTSUITE = env.SConscript(os.path.join('testsuite', 'SConscript'),
variant_dir = testsuite_build,
exports = ['env'],
duplicate = 0)
SConscriptChdir(1)
Depends(TESTSUITE, PROCEDURAL)
else:
TESTSUITE = None
for target in [RENDERDELEGATE, PROCEDURAL, SCHEMAS, ARNOLD_TO_USD, RENDERDELEGATE, DOCS, TESTSUITE]:
if target:
env.AlwaysBuild(target)
if TESTSUITE:
env.Alias('testsuite', TESTSUITE)
env.Alias('install', PREFIX)
# Install compiled dynamic library
if PROCEDURAL:
INSTALL_PROC = env.Install(PREFIX_PROCEDURAL, PROCEDURAL)
env.Alias('procedural-install', INSTALL_PROC)
if ARNOLD_TO_USD:
INSTALL_ARNOLD_TO_USD = env.Install(PREFIX_BIN, ARNOLD_TO_USD)
env.Alias('writer-install', INSTALL_ARNOLD_TO_USD)
if RENDERDELEGATE:
INSTALL_RENDERDELEGATE = env.Install(PREFIX_RENDER_DELEGATE, RENDERDELEGATE)
INSTALL_RENDERDELEGATE += env.Install(os.path.join(PREFIX_RENDER_DELEGATE, 'hdArnold', 'resources'), [os.path.join('render_delegate', 'plugInfo.json')])
INSTALL_RENDERDELEGATE += env.Install(PREFIX_RENDER_DELEGATE, ['plugInfo.json'])
INSTALL_RENDERDELEGATE += env.Install(os.path.join(PREFIX_HEADERS, 'render_delegate'), env.Glob(os.path.join('render_delegate', '*.h')))
INSTALL_RENDERDELEGATE += env.Install(PREFIX_HEADERS, ARNOLDUSD_HEADER)
env.Alias('delegate-install', INSTALL_RENDERDELEGATE)
'''
# below are the other dlls we need
env.Install(USD_INSTALL, [os.path.join(env['USD_PATH'], 'bin', 'tbb.dll')])
env.Install(USD_INSTALL, [os.path.join(env['USD_PATH'], 'bin', 'glew32.dll')])
env.Install(USD_INSTALL, [os.path.join(env['USD_PATH'], 'lib', 'boost_python-vc140-mt-1_61.dll')])
'''
# This follows the standard layout of USD plugins / libraries.
if SCHEMAS:
INSTALL_SCHEMAS = env.Install(PREFIX_LIB, [SCHEMAS[0]])
INSTALL_SCHEMAS += env.Install(os.path.join(PREFIX_LIB, 'python', 'UsdArnold'), [SCHEMAS[1], os.path.join('schemas', '__init__.py')])
INSTALL_SCHEMAS += env.Install(os.path.join(PREFIX_LIB, 'usd'), ['plugInfo.json'])
INSTALL_SCHEMAS += env.Install(os.path.join(PREFIX_LIB, 'usd', 'usdArnold', 'resources', 'usdArnold'), [SCHEMAS[2]])
INSTALL_SCHEMAS += env.Install(os.path.join(PREFIX_LIB, 'usd', 'usdArnold', 'resources'), [SCHEMAS[3], SCHEMAS[4]])
INSTALL_SCHEMAS += env.Install(os.path.join(PREFIX_HEADERS, 'schemas'), SCHEMAS[5])
env.Alias('schemas-install', INSTALL_SCHEMAS)
if DOCS:
INSTALL_DOCS = env.Install(PREFIX_DOCS, DOCS)
env.Alias('docs-install', INSTALL_DOCS)
if BUILD_HOUDINI_TOOLS:
# There could be a CMakeLists.txt in the root of this folder in the future.
INSTALL_HOUDINI = env.Install(os.path.join(PREFIX_THIRD_PARTY, 'houdini'), os.path.join('third_party', 'houdini', 'scripts'))
INSTALL_HOUDINI = env.Install(os.path.join(PREFIX_THIRD_PARTY, 'houdini'), os.path.join('third_party', 'houdini', 'soho'))
Default(PREFIX)