Skip to content

Commit ae902e5

Browse files
committed
Enable imaging in build_usd.py
1 parent b9c276c commit ae902e5

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

build_scripts/build_usd.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2234,7 +2234,7 @@ def __init__(self, args):
22342234

22352235
# - Imaging
22362236
self.buildImaging = (args.build_imaging == IMAGING or
2237-
args.build_imaging == USD_IMAGING) and not embedded
2237+
args.build_imaging == USD_IMAGING)
22382238
self.enablePtex = self.buildImaging and args.enable_ptex
22392239
self.enableOpenVDB = self.buildImaging and args.enable_openvdb
22402240

@@ -2251,8 +2251,8 @@ def __init__(self, args):
22512251
self.buildPrman = self.buildImaging and args.build_prman
22522252
self.prmanLocation = (os.path.abspath(args.prman_location)
22532253
if args.prman_location else None)
2254-
self.buildOIIO = args.build_oiio or (self.buildUsdImaging
2255-
and self.buildTests)
2254+
self.buildOIIO = (args.build_oiio or (self.buildUsdImaging
2255+
and self.buildTests))
22562256
self.buildOCIO = args.build_ocio
22572257

22582258
# - Alembic Plugin

pxr/imaging/garch/glPlatformDebugWindowDarwin.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ - (void)keyDown:(NSEvent *)event
226226
[NSApp stop:nil];
227227
}
228228

229-
#else
229+
#else // IPHONE Derivatives
230230

231231
PXR_NAMESPACE_OPEN_SCOPE
232232

0 commit comments

Comments
 (0)