summaryrefslogtreecommitdiff
path: root/indra/develop.py
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2008-09-03 18:08:12 +0000
committerJames Cook <james@lindenlab.com>2008-09-03 18:08:12 +0000
commit0e05ef68f969f241e8d50a271d79ceefac008020 (patch)
tree9e4e8a13ddf31b6d5ee905d08145519264a78ec9 /indra/develop.py
parentc4d1e19668150ca8d34507993298432f6b34e85f (diff)
Added help text for -DSERVER:BOOL=FALSE and -DPACKAGE:BOOL=TRUE options. No actual code changes. Reviewed with Kelly.
Diffstat (limited to 'indra/develop.py')
-rwxr-xr-xindra/develop.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/develop.py b/indra/develop.py
index 2e50fb040b..579f1cdf29 100755
--- a/indra/develop.py
+++ b/indra/develop.py
@@ -601,6 +601,13 @@ Commands:
configure configure project by running cmake
If you do not specify a command, the default is "configure".
+
+Examples:
+ Set up a viewer-only project for your system:
+ develop.py configure -DSERVER:BOOL=FALSE
+
+ Set up a Visual Studio 2005 project with package target (to build installer):
+ develop.py -G vc80 configure -DPACKAGE:BOOL=TRUE
'''
def main(arguments):
@@ -612,6 +619,9 @@ def main(arguments):
['help', 'standalone', 'no-distcc', 'unattended', 'type=', 'incredibuild', 'generator='])
except getopt.GetoptError, err:
print >> sys.stderr, 'Error:', err
+ print >> sys.stderr, """
+Note: You must pass -D options to cmake after the "configure" command
+For example: develop.py configure -DSERVER:BOOL=FALSE"""
sys.exit(1)
for o, a in opts: