mesa/src/getopt/SConscript

16 lines
204 B
Python
Raw Normal View History

Import('*')
if not env['msvc']:
Return()
env = env.Clone()
2011-01-12 16:08:22 +00:00
env.Prepend(CPPPATH = ['.'])
getopt = env.ConvenienceLibrary(
target = 'getopt',
source = ['getopt_long.c'],
)
Export('getopt')