mirror of
https://github.com/UberGames/GtkRadiant.git
synced 2024-11-10 06:31:41 +00:00
20 lines
622 B
Text
20 lines
622 B
Text
|
# -*- mode: python -*-
|
||
|
# ZeroRadiant build scripts
|
||
|
# TTimo <ttimo@idsoftware.com>
|
||
|
# http://scons.sourceforge.net
|
||
|
|
||
|
import os
|
||
|
|
||
|
Import( [ 'utils', 'config', 'settings', 'lib_objects' ] )
|
||
|
|
||
|
env = Environment()
|
||
|
settings.SetupEnvironment( env, config['name'] )
|
||
|
env.Prepend( CPPPATH = [ '#tools/quake3/common' ] )
|
||
|
env.Append( LIBS = [ 'pthread', 'png', 'jpeg' ] )
|
||
|
proj = utils.vcproj( os.path.join( GetLaunchDir(), 'tools/quake3/q3map2/q3map2.vcproj' ) )
|
||
|
objects = lib_objects
|
||
|
objects += [ os.path.join( 'tools/quake3/q3map2', i ) for i in proj.getSourceFiles() ]
|
||
|
q3map2 = env.Program( 'q3map2.bin', objects )
|
||
|
|
||
|
Return( 'q3map2' )
|