Skip to content

Commit de0025f

Browse files
committed
Fix build script issues on non apple platforms
1 parent fd8417b commit de0025f

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,8 @@ This command takes an optional list of targets to build, but will otherwise buil
201201
> python OpenUSD/build_scripts/apple_utils.py xcframework /path/to/my_usd_install_dir
202202
```
203203

204+
Note that currently, Simulator builds do not render with Imaging as Simulator targets have reduced Metal support.
205+
204206
##### Windows:
205207

206208
Launch the "x64 Native Tools Command Prompt" for your version of Visual Studio

build_scripts/build_usd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2785,7 +2785,7 @@ def FormatBuildArguments(buildArgs):
27852785
Print("See documentation at http://openusd.org/docs/RenderMan-USD-Imaging-Plugin.html "
27862786
"for setting up the RenderMan plugin.\n")
27872787

2788-
if context.buildAppleFramework:
2788+
if MacOS() and context.buildAppleFramework:
27892789
Print("""
27902790
Add the following framework to your Xcode Project:
27912791
OpenUSD.framework

0 commit comments

Comments
 (0)