diff options
author | Rye Cogtail <rye@lindenlab.com> | 2024-09-30 17:49:07 -0700 |
---|---|---|
committer | Rye <rye@lindenlab.com> | 2024-10-03 14:43:17 -0700 |
commit | 8cfcd8e135a03b12ca949e3d3f1217c166355f56 (patch) | |
tree | fbeed341dee1fd61ed669b533c4297817ecc0f78 /autobuild.xml | |
parent | 736cc7ea19b984216834b5b95ed66a18d94cd79b (diff) |
Use cmake build command instead of devenv to reduce GHA build time
Diffstat (limited to 'autobuild.xml')
-rw-r--r-- | autobuild.xml | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/autobuild.xml b/autobuild.xml index 35702cf3cf..6802f5d530 100644 --- a/autobuild.xml +++ b/autobuild.xml @@ -3294,15 +3294,15 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors</string> <key>build</key> <map> <key>command</key> - <string>devenv</string> + <string>cmake</string> <key>options</key> <array> - <string>/build</string> - <string>RelWithDebInfo|${AUTOBUILD_WIN_VSPLATFORM|NOTWIN}</string> - </array> - <key>arguments</key> - <array> - <string>SecondLife.sln</string> + <string>--build</string> + <string>.</string> + <string>--config</string> + <string>RelWithDebInfo</string> + <string>--parallel</string> + <string>$AUTOBUILD_CPU_COUNT</string> </array> </map> <key>default</key> @@ -3369,15 +3369,15 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors</string> <key>build</key> <map> <key>command</key> - <string>devenv</string> + <string>cmake</string> <key>options</key> <array> - <string>/build</string> - <string>Release|${AUTOBUILD_WIN_VSPLATFORM|NOTWIN}</string> - </array> - <key>arguments</key> - <array> - <string>SecondLife.sln</string> + <string>--build</string> + <string>.</string> + <string>--config</string> + <string>Release</string> + <string>--parallel</string> + <string>$AUTOBUILD_CPU_COUNT</string> </array> </map> <key>name</key> |