From e3e59e2244b98b78175fecad22053a8edae1b365 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sat, 20 Apr 2013 22:54:58 +1000 Subject: Cmake now puts the running of vstool into the make files for us, so no need to do it in python. --- linden/indra/develop.py | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'linden') diff --git a/linden/indra/develop.py b/linden/indra/develop.py index 7d57973..ba22202 100755 --- a/linden/indra/develop.py +++ b/linden/indra/develop.py @@ -662,25 +662,6 @@ class WindowsSetup(PlatformSetup): raise CommandError('the command %r %s' % (name, ret)) - def run_vstool(self): - for build_dir in self.build_dirs(): - stamp = os.path.join(build_dir, 'vstool.txt') - try: - prev_build = open(stamp).read().strip() - except IOError: - prev_build = '' - if prev_build == self.build_type: - # Only run vstool if the build type has changed. - continue - vstool_cmd = (os.path.join('tools','vstool','VSTool.exe') + - ' --solution ' + - os.path.join(build_dir,'Imprudence.sln') + - ' --config ' + self.build_type + - ' --startup imprudence-bin') - print 'Running %r in %r' % (vstool_cmd, getcwd()) - self.run(vstool_cmd) - print >> open(stamp, 'w'), self.build_type - def run_build(self, opts, targets): cwd = getcwd() build_cmd = self.get_build_cmd() -- cgit v1.1