diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2015-02-27 14:12:06 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2015-02-27 14:12:06 -0500 |
commit | 19e6455d830fe753a29e216fbd06db3c04d39a0d (patch) | |
tree | 67d313f04ab85524c73e04d508b1156b7096802d | |
parent | 794ae5cdcadcfaa655815bfa1e6c6823e03ee1f6 (diff) |
Remove viewer build dependency on Incredibuild.
Specifically, change the 'BuildConsole' command to 'devenv', and fix
command-line arguments appropriately.
-rwxr-xr-x | autobuild.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/autobuild.xml b/autobuild.xml index e74825f945..52d750f64d 100755 --- a/autobuild.xml +++ b/autobuild.xml @@ -2727,11 +2727,11 @@ <string>SecondLife.sln</string> </array> <key>command</key> - <string>BuildConsole</string> + <string>devenv</string> <key>options</key> <array> <string>/build</string> - <string>"/cfg=RelWithDebInfo|Win32"</string> + <string>"RelWithDebInfo|Win32"</string> </array> </map> <key>configure</key> @@ -2815,11 +2815,11 @@ <string>SecondLife.sln</string> </array> <key>command</key> - <string>BuildConsole</string> + <string>devenv</string> <key>options</key> <array> <string>/build</string> - <string>"/cfg=Release|Win32"</string> + <string>"Release|Win32"</string> </array> </map> <key>configure</key> |