diff options
author | James Cook <james@lindenlab.com> | 2008-11-19 23:26:29 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2008-11-19 23:26:29 +0000 |
commit | 2a44e81675d22aa5ed0844d5a4ac18bb9bd49f64 (patch) | |
tree | 595dd4b8b7beac938fc0e14ee075e5cfeb1f129b /indra/develop.py | |
parent | 2d2d427158ca2465e2d70d84b4499cab57e2e208 (diff) |
QAR-1018 Lightweight Windows Setup App (windows-setup-3). svn merge -r102882:102883 svn+ssh://svn.lindenlab.com/svn/linden/branches/windows-setup/windows-setup-3-merge
Diffstat (limited to 'indra/develop.py')
-rwxr-xr-x | indra/develop.py | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/indra/develop.py b/indra/develop.py index a987bb3da6..3692fac2b3 100755 --- a/indra/develop.py +++ b/indra/develop.py @@ -613,7 +613,7 @@ setup_platform = { usage_msg = ''' -Usage: develop.py [options] command [command-options] +Usage: develop.py [options] [command [command-options]] Options: -h | --help print this help message @@ -623,21 +623,27 @@ Options: -t | --type=NAME build type ("Debug", "Release", or "RelWithDebInfo") -N | --no-distcc disable use of distcc -G | --generator=NAME generator name - Windows: VC71 or VS2003 (default), VC80 (VS2005) or VC90 (VS2008) + Windows: VC71 or VS2003 (default), VC80 (VS2005) or + VC90 (VS2008) Mac OS X: Xcode (default), Unix Makefiles Linux: Unix Makefiles (default), KDevelop3 Commands: - build configure and build default target - clean delete all build directories (does not affect sources) - configure configure project by running cmake + build configure and build default target + clean delete all build directories, does not affect sources + configure configure project by running cmake (default command if none given) -If you do not specify a command, the default is "configure". +Command-options for "configure": + We use cmake variables to change the build configuration. + -DSERVER:BOOL=OFF Don't configure simulator/dataserver/etc + -DVIEWER:BOOL=OFF Don't configure the viewer + -DPACKAGE:BOOL=ON Create "package" target to make installers + -DLOCALIZESETUP:BOOL=ON Create one win_setup target per supported language Examples: Set up a viewer-only project for your system: develop.py configure -DSERVER:BOOL=OFF - Set up a Visual Studio 2005 project with package target (to build installer): + Set up a Visual Studio 2005 project with "package" target: develop.py -G vc80 configure -DPACKAGE:BOOL=ON ''' |