mirror of
https://github.com/UberGames/GtkRadiant.git
synced 2024-11-10 14:41:54 +00:00
19 lines
609 B
Python
19 lines
609 B
Python
# -*- mode: python -*-
|
|
# GtkRadiant build scripts
|
|
# TTimo <ttimo@ttimo.net>
|
|
# http://scons.org/
|
|
|
|
import os
|
|
|
|
Import( [ 'utils', 'config', 'settings', 'lib_objects' ] )
|
|
|
|
env = Environment( ENV = os.environ )
|
|
settings.SetupEnvironment( env, config['name'] )
|
|
env.Prepend( CPPPATH = [ '#tools/quake3/common' ] )
|
|
env.Append( LIBS = [ 'm', 'pthread' ] )
|
|
proj = utils.vcproj( os.path.join( GetLaunchDir(), 'tools/quake3/q3data/q3data.vcproj' ) )
|
|
objects = lib_objects
|
|
objects += [ os.path.join( 'tools/quake3/q3data', i ) for i in proj.getSourceFiles() ]
|
|
q3data = env.Program( 'q3data', objects )
|
|
|
|
Return( 'q3data' )
|