home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 March / Gamestar_82_2006-03_dvd.iso / DVDStar / Editace / quake4_sdkv10.exe / source / sys / scons / SConscript.idlib < prev   
Text File  |  2005-11-14  |  487b  |  20 lines

  1. # -*- mode: python -*-
  2. # Quake4 build script
  3. # TTimo <ttimo@idsoftware.com>
  4. # http://scons.sourceforge.net
  5.  
  6. import os.path, scons_utils
  7.  
  8. Import( 'GLOBALS' )
  9. Import( GLOBALS )
  10.  
  11. idlib_list = scons_utils.ExtractSource( File( '#idlib.vcproj' ).abspath )
  12.  
  13. ret_list = []
  14. for f in idlib_list:
  15.     if ( local_idlibpic == 0 ):
  16.         ret_list += g_env.StaticObject( source = os.path.join( '../..', f ) )
  17.     else:
  18.         ret_list += g_env.SharedObject( source = os.path.join( '../..', f ) )
  19. Return( 'ret_list' )
  20.