Skip to content

Commit 4666950

Browse files
authored
Fix arm64 issues (#1)
* size_t -> UInt64 * bool -> byte * regenerate bindings * UIntPtr * undo
1 parent 7510363 commit 4666950

File tree

5 files changed

+69
-69
lines changed

5 files changed

+69
-69
lines changed

Generate-Bindings.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
param (
1414
[string]$buildVerbosity = "normal",
1515
[string]$buildConfiguration = "Release",
16-
[string]$tinyUSDGenCsprojPath = "MeshOptimizerGen\MeshOptimizerGen\MeshOptimizerGen.csproj"
16+
[string]$csprojPath = "MeshOptimizerGen\MeshOptimizerGen\MeshOptimizerGen.csproj"
1717
)
1818

1919
# Utility functions
@@ -29,7 +29,7 @@ LogDebug "#######################################"
2929

3030
# Compile generator
3131
LogDebug "START generator build process"
32-
dotnet publish -v:$buildVerbosity -p:Configuration=$buildConfiguration $tinyUSDGenCsprojPath
32+
dotnet publish -v:$buildVerbosity -p:Configuration=$buildConfiguration $csprojPath
3333
if($?)
3434
{
3535
LogDebug "END generator build process"

0 commit comments

Comments
 (0)