mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-13 00:24:29 +00:00
fix the --no-packs stuff
This commit is contained in:
parent
a26bd5a9aa
commit
6ab305d626
2 changed files with 5 additions and 5 deletions
|
@ -18,9 +18,4 @@ proj = utils.vcxproj( os.path.join( GetLaunchDir(), 'radiant/radiant.vcxproj' )
|
||||||
|
|
||||||
radiant = env.Program( 'radiant.bin', lib_objects + [ os.path.join( 'radiant', i ) for i in proj.getSourceFiles() ] )
|
radiant = env.Program( 'radiant.bin', lib_objects + [ os.path.join( 'radiant', i ) for i in proj.getSourceFiles() ] )
|
||||||
|
|
||||||
AddOption('--no-packs',
|
|
||||||
dest='no_packs',
|
|
||||||
action='store_true',
|
|
||||||
help="don't fetch game packs")
|
|
||||||
|
|
||||||
Return( 'radiant' )
|
Return( 'radiant' )
|
||||||
|
|
|
@ -33,6 +33,11 @@ $ scons -j8 --no-packs
|
||||||
""" )
|
""" )
|
||||||
Return()
|
Return()
|
||||||
|
|
||||||
|
AddOption('--no-packs',
|
||||||
|
dest='no_packs',
|
||||||
|
action='store_true',
|
||||||
|
help="don't fetch game packs")
|
||||||
|
|
||||||
active_configs = []
|
active_configs = []
|
||||||
|
|
||||||
# load up configurations from the save file
|
# load up configurations from the save file
|
||||||
|
|
Loading…
Reference in a new issue