aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/develop.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xlinden/indra/develop.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/develop.py b/linden/indra/develop.py
index 8edfccc..a0b11c6 100755
--- a/linden/indra/develop.py
+++ b/linden/indra/develop.py
@@ -503,10 +503,10 @@ class WindowsSetup(PlatformSetup):
503 if self.gens[self.generator]['ver'] in [ r'8.0', r'9.0' ]: 503 if self.gens[self.generator]['ver'] in [ r'8.0', r'9.0' ]:
504 config = '\"%s|Win32\"' % config 504 config = '\"%s|Win32\"' % config
505 505
506 return "buildconsole Secondlife.sln /build %s" % config 506 return "buildconsole Imprudence.sln /build %s" % config
507 507
508 # devenv.com is CLI friendly, devenv.exe... not so much. 508 # devenv.com is CLI friendly, devenv.exe... not so much.
509 return ('"%sdevenv.com" Secondlife.sln /build %s' % 509 return ('"%sdevenv.com" Imprudence.sln /build %s' %
510 (self.find_visual_studio(), self.build_type)) 510 (self.find_visual_studio(), self.build_type))
511 511
512 # this override of run exists because the PlatformSetup version 512 # this override of run exists because the PlatformSetup version
@@ -527,9 +527,9 @@ class WindowsSetup(PlatformSetup):
527 for build_dir in self.build_dirs(): 527 for build_dir in self.build_dirs():
528 vstool_cmd = os.path.join('tools','vstool','VSTool.exe') \ 528 vstool_cmd = os.path.join('tools','vstool','VSTool.exe') \
529 + ' --solution ' \ 529 + ' --solution ' \
530 + os.path.join(build_dir,'SecondLife.sln') \ 530 + os.path.join(build_dir,'Imprudence.sln') \
531 + ' --config RelWithDebInfo' \ 531 + ' --config RelWithDebInfo' \
532 + ' --startup secondlife-bin' 532 + ' --startup imprudence-bin'
533 print 'Running %r in %r' % (vstool_cmd, os.getcwd()) 533 print 'Running %r in %r' % (vstool_cmd, os.getcwd())
534 self.run(vstool_cmd) 534 self.run(vstool_cmd)
535 535