mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-09 23:01:55 +00:00
16 lines
468 B
Text
16 lines
468 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, useGtk = True, useGtkGL = True )
|
||
|
proj = utils.vcproj( os.path.join( GetLaunchDir(), 'radiant/radiant.vcproj' ) )
|
||
|
|
||
|
env.Program( 'radiant.bin', lib_objects + [ os.path.join( 'radiant', i ) for i in proj.getSourceFiles() ] )
|
||
|
|