diff options
author | McCabe Maxsted | 2011-07-13 21:35:31 -0700 |
---|---|---|
committer | McCabe Maxsted | 2011-09-08 16:47:46 -0700 |
commit | 0e18be36d49140365ba1092bd965b645c4bf1eef (patch) | |
tree | d5820f876e9741be5be1540a3af807fdc505f678 /linden/indra/lib/python | |
parent | Removed packaging private assemblies since that's no longer how we distribute... (diff) | |
download | meta-impy-0e18be36d49140365ba1092bd965b645c4bf1eef.zip meta-impy-0e18be36d49140365ba1092bd965b645c4bf1eef.tar.gz meta-impy-0e18be36d49140365ba1092bd965b645c4bf1eef.tar.bz2 meta-impy-0e18be36d49140365ba1092bd965b645c4bf1eef.tar.xz |
Added a new Windows installer script for ISS. Packaging now just generates a versioned script that must be compiled (currently) by hand. Leaving the NSIS files to be cleaned up as the installer work continues
Diffstat (limited to 'linden/indra/lib/python')
-rw-r--r-- | linden/indra/lib/python/indra/util/llmanifest.py | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/linden/indra/lib/python/indra/util/llmanifest.py b/linden/indra/lib/python/indra/util/llmanifest.py index fc777b2..3cd8786 100644 --- a/linden/indra/lib/python/indra/util/llmanifest.py +++ b/linden/indra/lib/python/indra/util/llmanifest.py | |||
@@ -121,15 +121,16 @@ ARGUMENTS=[ | |||
121 | default=""), | 121 | default=""), |
122 | dict(name='artwork', description='Artwork directory.', default=DEFAULT_SRCTREE), | 122 | dict(name='artwork', description='Artwork directory.', default=DEFAULT_SRCTREE), |
123 | dict(name='build', description='Build directory.', default=DEFAULT_SRCTREE), | 123 | dict(name='build', description='Build directory.', default=DEFAULT_SRCTREE), |
124 | dict(name='buildtype', | 124 | dict(name='buildtype', description="""The build type used. ('Debug', 'Release', 'ReleaseSSE2', or 'RelWithDebInfo') |
125 | description='Set to DEBUG if this is a debug build.', | 125 | Default is Release """, |
126 | default="RELEASE"), | 126 | default="Release"), |
127 | dict(name='channel', | 127 | dict(name='branding_id', description="""Identifier for the branding set to |
128 | description="""The channel to use for updates, packaging, settings name, etc.""", | 128 | use. Currently, 'imprudence')""", |
129 | default=get_channel), | 129 | default='inworldz'), |
130 | dict(name='configuration', | 130 | dict(name='configuration', |
131 | description="""The build configuration used. Only used on OS X for | 131 | description="""The build configuration used. On OSX this is |
132 | now, but it could be used for other platforms as well.""", | 132 | Universal, etc. On Windows it's the *actual* buildtype for |
133 | some weird reason.""", | ||
133 | default="Universal"), | 134 | default="Universal"), |
134 | dict(name='dest', description='Destination directory.', default=DEFAULT_SRCTREE), | 135 | dict(name='dest', description='Destination directory.', default=DEFAULT_SRCTREE), |
135 | dict(name='grid', | 136 | dict(name='grid', |
@@ -137,13 +138,16 @@ ARGUMENTS=[ | |||
137 | though it's not strictly a grid, 'firstlook' is also an acceptable | 138 | though it's not strictly a grid, 'firstlook' is also an acceptable |
138 | value for this parameter.""", | 139 | value for this parameter.""", |
139 | default=""), | 140 | default=""), |
141 | dict(name='channel', | ||
142 | description="""The channel to use for updates, packaging, settings name, etc.""", | ||
143 | default=get_channel), | ||
144 | dict(name='login_channel', | ||
145 | description="""The channel to use for login handshake/updates only.""", | ||
146 | default=None), | ||
140 | dict(name='installer_name', | 147 | dict(name='installer_name', |
141 | description=""" The name of the file that the installer should be | 148 | description=""" The name of the file that the installer should be |
142 | packaged up into. Only used on Linux at the moment.""", | 149 | packaged up into. Only used on Linux at the moment.""", |
143 | default=None), | 150 | default=None), |
144 | dict(name='login_channel', | ||
145 | description="""The channel to use for login handshake/updates only.""", | ||
146 | default=None), | ||
147 | dict(name='login_url', | 151 | dict(name='login_url', |
148 | description="""The url that the login screen displays in the client.""", | 152 | description="""The url that the login screen displays in the client.""", |
149 | default=None), | 153 | default=None), |