Files
third_party_mesa3d/src/getopt/SConscript
2011-01-12 16:54:21 +00:00

16 lines
204 B
Python

Import('*')
if not env['msvc']:
Return()
env = env.Clone()
env.Prepend(CPPPATH = ['.'])
getopt = env.ConvenienceLibrary(
target = 'getopt',
source = ['getopt_long.c'],
)
Export('getopt')