mesa/src/getopt/SConscript

14 lines
174 B
Python
Raw Normal View History

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