aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview
diff options
context:
space:
mode:
authorMcCabe Maxsted2011-07-12 22:37:37 -0700
committerMcCabe Maxsted2011-09-08 16:17:56 -0700
commit64514186de613cfb53f08c3f11aec1c17d7cf5c9 (patch)
treec60809ed8fa7fc8501adf8482db476ca9c897fe2 /linden/indra/newview
parentAdded ll_frand(min, max) function (diff)
downloadmeta-impy-64514186de613cfb53f08c3f11aec1c17d7cf5c9.zip
meta-impy-64514186de613cfb53f08c3f11aec1c17d7cf5c9.tar.gz
meta-impy-64514186de613cfb53f08c3f11aec1c17d7cf5c9.tar.bz2
meta-impy-64514186de613cfb53f08c3f11aec1c17d7cf5c9.tar.xz
Added basic copying of symbol files when the windows package project is run. Todo: add SSE2 target
Diffstat (limited to 'linden/indra/newview')
-rwxr-xr-xlinden/indra/newview/viewer_manifest.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py
index 5e1e816..774daa9 100755
--- a/linden/indra/newview/viewer_manifest.py
+++ b/linden/indra/newview/viewer_manifest.py
@@ -226,6 +226,15 @@ class WindowsManifest(ViewerManifest):
226 # nor do we have a fixed name for the executable 226 # nor do we have a fixed name for the executable
227 self.path(self.find_existing_file('debug/imprudence-bin.exe', 'release/imprudence-bin.exe', 'relwithdebinfo/imprudence-bin.exe'), dst=self.final_exe()) 227 self.path(self.find_existing_file('debug/imprudence-bin.exe', 'release/imprudence-bin.exe', 'relwithdebinfo/imprudence-bin.exe'), dst=self.final_exe())
228 228
229 # copy over the the pdb file for the regular or SSE2 versions
230 try:
231 symbol_name = 'inworldz-%s.pdb' % ('.'.join(self.args['version']))
232 self.path(self.find_existing_file('release/inworldz-bin.pdb'), dst="../../../../../pdb_files/inworldz-%s.pdb" % (symbol_ver))
233 pass
234 except:
235 print "Skipping saving symbols"
236 pass
237
229 self.gather_documents() 238 self.gather_documents()
230 239
231 if self.prefix("../..", dst="doc"): 240 if self.prefix("../..", dst="doc"):