Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. Import('*')
  2.  
  3. if not env['msvc']:
  4.     Return()
  5.  
  6. env = env.Clone()
  7.  
  8. env.Prepend(CPPPATH = ['.'])
  9.  
  10. getopt = env.ConvenienceLibrary(
  11.     target = 'getopt',
  12.     source = ['getopt_long.c'],
  13. )
  14.  
  15. Export('getopt')
  16.