mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
26 lines
892 B
Python
26 lines
892 B
Python
# -*- mode: python -*-
|
|
# GtkRadiant build scripts
|
|
# TTimo <ttimo@ttimo.net>
|
|
# http://scons.org/
|
|
|
|
import os
|
|
|
|
Import( [ 'utils', 'config', 'settings', 'lib_objects' ] )
|
|
|
|
env = Environment()
|
|
settings.SetupEnvironment( env, config['name'] )
|
|
env.Prepend( CPPPATH = [ '#tools/quake3/common', ] )
|
|
env.Append( LIBS = [ 'm', 'pthread', 'png', 'jpeg' ] )
|
|
proj = utils.vcproj( os.path.join( GetLaunchDir(), 'tools/urt/tools/quake3/q3map2/q3map2_urt.vcproj' ) )
|
|
objects = lib_objects
|
|
|
|
def keep_file( n ):
|
|
for skip in [ 'cmdlib.c', 'imagelib.c', 'inout.c', 'vfs.c', 'mutex.c', 'polylib.c', 'scriplib.c', 'threads.c', 'unzip.c' ]:
|
|
if ( n.find( skip ) != -1 ):
|
|
return False
|
|
return True
|
|
|
|
objects += filter( keep_file, [ os.path.join( 'tools/urt/tools/quake3/q3map2', i ) for i in proj.getSourceFiles() ] )
|
|
q3map2_urt = env.Program( 'q3map2_urt', objects )
|
|
|
|
Return( 'q3map2_urt' )
|