Skip to content

Commit

Permalink
Fix aarch64 & x86/64 on CentOS.
Browse files Browse the repository at this point in the history
* Fix build error due to incorrectly cased <hdf5.h> which should have been <HDF5.h>.
* wabiverse/MetaverseKit@5addbe4
  • Loading branch information
furby-tm committed Apr 4, 2024
1 parent 9d2a99b commit ded75ea
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DeclarativePixarUSD.usda
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#usda 1.0
(
doc = "SwiftUSD v23.11.32 | Declarative API"
doc = "SwiftUSD v23.11.33 | Declarative API"
)

def "DeclarativeScene"
Expand Down
2 changes: 1 addition & 1 deletion HelloPixarUSD.usda
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#usda 1.0
(
doc = "SwiftUSD v23.11.32"
doc = "SwiftUSD v23.11.33"
)

def Xform "Geometry"
Expand Down
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/wabiverse/MetaverseKit",
"state" : {
"revision" : "de4a89d68a4584a94b3eb2655e658c3474863bc5",
"version" : "1.6.7"
"revision" : "5addbe4b3c6f5cbc70afd0449bb10a1ea88b1e5c",
"version" : "1.6.8"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/wabiverse/MetaverseKit", from: "1.6.7"),
.package(url: "https://github.com/wabiverse/MetaverseKit", from: "1.6.8"),
.package(url: "https://github.com/furby-tm/swift-bundler", from: "2.0.9"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.5.3"),
.package(url: "https://github.com/apple/swift-syntax.git", from: "509.0.0"),
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ For more details, please visit the web site [here](http://openusd.org).
##### To use Pixar's USD in swift, add SwiftUSD as a package dependency in your project's Package.swift file.
```swift
dependencies: [
.package(url: "https://github.com/wabiverse/SwiftUSD.git", from: "23.11.32"),
.package(url: "https://github.com/wabiverse/SwiftUSD.git", from: "23.11.33"),
]
```

Expand Down Expand Up @@ -106,7 +106,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/wabiverse/SwiftUSD.git", from: "23.11.32")
.package(url: "https://github.com/wabiverse/SwiftUSD.git", from: "23.11.33")
],
targets: [
/* 📕 For library products... */
Expand Down
2 changes: 1 addition & 1 deletion Sources/pxr/include/pxr/pxrns.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

/* ------ swift usd. ------ */

#define SWIFTUSD_EVOLUTION 32
#define SWIFTUSD_EVOLUTION 33
#define PXR_INTERNAL_NS Pixar

/* ------------------------ */
Expand Down

0 comments on commit ded75ea

Please sign in to comment.