mirror of
https://github.com/UberGames/GtkRadiant.git
synced 2024-11-10 06:31:41 +00:00
add more packs, grab zlib dll for x64 q3map2
This commit is contained in:
parent
562a941d16
commit
b815d602a5
1 changed files with 3 additions and 2 deletions
|
@ -28,7 +28,7 @@ class Config:
|
|||
# platforms for which to assemble a setup
|
||||
self.setup_platforms = [ 'local', 'x86', 'x64', 'win32' ]
|
||||
# paks to assemble in the setup
|
||||
self.setup_packs = [ 'Q3Pack', 'UrTPack', 'ETPack', 'QLPack', 'Q2Pack', 'Q2WPack' ]
|
||||
self.setup_packs = [ 'Q3Pack', 'UrTPack', 'ETPack', 'QLPack', 'Q2Pack', 'Q2WPack', 'JAPack', 'STVEFPack' ]
|
||||
|
||||
def __repr__( self ):
|
||||
return 'config: target=%s config=%s' % ( self.target_selected, self.config_selected )
|
||||
|
@ -389,6 +389,7 @@ class Config:
|
|||
'%s/bin/libpng14-14.dll' % GTK64_PREFIX,
|
||||
'%s/bin/libglib-2.0-0.dll' % GTK64_PREFIX,
|
||||
'%s/bin/libintl-8.dll' % GTK64_PREFIX,
|
||||
'%s/bin/zlib1.dll' % GTK64_PREFIX,
|
||||
]:
|
||||
shutil.copy( os.path.join( srcdir, x64_dll ), 'install/x64' )
|
||||
|
||||
|
@ -527,4 +528,4 @@ class TestConfigParse( unittest.TestCase ):
|
|||
print repr( configs )
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
unittest.main()
|
||||
|
|
Loading…
Reference in a new issue