Skip to content

Commit 5b611bd

Browse files
committed
Remove unnecessary changes.
1 parent 8cb2152 commit 5b611bd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Build~/Package.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,19 +143,17 @@ public void Run()
143143
var x64ConfigureArgs = configureArgs.Concat(new[]
144144
{
145145
"-DCMAKE_OSX_ARCHITECTURES=x86_64",
146-
"-DCMAKE_SYSTEM_NAME=Darwin",
147146
"-DCMAKE_INSTALL_PREFIX=" + Path.Combine(Utility.PackageRoot, "Editor", "x86_64")
148147
});
149148
Utility.Run("cmake", x64ConfigureArgs);
150149

151150
buildArgs[1] = "native~/build-x64";
152151
Utility.Run("cmake", buildArgs);
153-
152+
154153
configureArgs[1] = "native~/build-arm64";
155154
var armConfigureArgs = configureArgs.Concat(new[]
156155
{
157156
"-DCMAKE_OSX_ARCHITECTURES=arm64",
158-
"-DCMAKE_SYSTEM_NAME=Darwin",
159157
"-DCMAKE_INSTALL_PREFIX=" + Path.Combine(Utility.PackageRoot, "Editor", "arm64")
160158
});
161159
Utility.Run("cmake", armConfigureArgs);

0 commit comments

Comments
 (0)