diff options
author | Oz Linden <oz@lindenlab.com> | 2016-12-05 15:20:08 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2016-12-05 15:20:08 -0500 |
commit | 8a67aaa009f99b858e750433cfbd7901341afad8 (patch) | |
tree | 1468f652cbd44c5d685d0bf9345b8fbeb6104f07 /BuildParams | |
parent | 83209ef5c082405e3866d50c4188afd5cfaa7358 (diff) |
limit variants to RelWithDebInfo and Release
Diffstat (limited to 'BuildParams')
-rwxr-xr-x | BuildParams | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/BuildParams b/BuildParams index cbd5be7658..a991781c58 100755 --- a/BuildParams +++ b/BuildParams @@ -3,10 +3,8 @@ # Please refer to: # https://wiki.secondlife.com/wiki/Automated_Build_System -# Global setting for now.... -Darwin.symbolfiles = "newview/Release/secondlife-symbols-darwin.tar.bz2" -CYGWIN.symbolfiles = "newview/Release/secondlife-symbols-windows.tar.bz2" -Linux.symbolfiles = "newview/secondlife-symbols-linux.tar.bz2" +# Variants (NOTE: 'Release' must be last for uploads to work correctly) +variants = "RelWithDebInfo Release" # Use Public Upload Locations public_build = true @@ -74,3 +72,8 @@ EDU_viewer_channel_suffix = "edu" # setting screen for your project or build configuration to set the # environment variable 'email' to a space-separated list of email addresses email="" + +# Global setting for now.... +Darwin.symbolfiles = "newview/Release/secondlife-symbols-darwin.tar.bz2" +CYGWIN.symbolfiles = "newview/Release/secondlife-symbols-windows.tar.bz2" +Linux.symbolfiles = "newview/secondlife-symbols-linux.tar.bz2" |