Skip to content

Commit

Permalink
Remove HdSt, Hdx, UsdImagingGL on iOS and visionOS.
Browse files Browse the repository at this point in the history
* Any libraries which have GL dependencies appear to be
  unavailable for the iOS and visionOS platforms.

Signed-off-by: furby™ <[email protected]>
  • Loading branch information
furby-tm committed Sep 9, 2024
1 parent c902bca commit 65689c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1468,7 +1468,7 @@ let package = Package(
.target(name: "Glf"),
.target(name: "PxOsd"),
.target(name: "Hd"),
.target(name: "HdSt"),
.target(name: "HdSt", condition: .when(platforms: Arch.OS.noembeddedapple.platform)),
.target(name: "Hgi"),
.target(name: "HgiInterop"),
.target(name: "CameraUtil"),
Expand Down Expand Up @@ -1555,7 +1555,7 @@ let package = Package(
.target(name: "Glf"),
.target(name: "Hd"),
.target(name: "HdSi"),
.target(name: "Hdx"),
.target(name: "Hdx", condition: .when(platforms: Arch.OS.noembeddedapple.platform)),
.target(name: "Hgi"),
.target(name: "PxOsd"),
.target(name: "Ar"),
Expand Down Expand Up @@ -1741,8 +1741,8 @@ let package = Package(
.target(name: "HdAr"),
.target(name: "HdMtlx"),
.target(name: "HdSi"),
.target(name: "HdSt"),
.target(name: "Hdx"),
.target(name: "HdSt", condition: .when(platforms: Arch.OS.noembeddedapple.platform)),
.target(name: "Hdx", condition: .when(platforms: Arch.OS.noembeddedapple.platform)),
.target(name: "Hgi"),
.target(name: "HgiMetal", condition: .when(platforms: Arch.OS.apple.platform)),
// .target(name: "HgiVulkan", condition: .when(platforms: Arch.OS.linux.platform)),
Expand All @@ -1753,7 +1753,7 @@ let package = Package(
// --- usd imaging. ------
.target(name: "UsdShaders"),
.target(name: "UsdImaging"),
.target(name: "UsdImagingGL"),
.target(name: "UsdImagingGL", condition: .when(platforms: Arch.OS.noembeddedapple.platform)),
// -------- macros. ------
.target(name: "PixarMacros"),
// -----------------------
Expand Down

0 comments on commit 65689c5

Please sign in to comment.