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 | 68797ab15c2ba6177cddfd316f69481d81aa9f59 (patch) | |
| tree | 9ac81478eec58a9e9ebf2c8dff09041bf5f3f6ca | |
| parent | 135ed987249dea7c3c16d368481189ade928995a (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 42a72d81de..aa9ce33eb1 100755 --- a/autobuild.xml +++ b/autobuild.xml @@ -2593,11 +2593,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> @@ -2634,11 +2634,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> | 
