Tizen 2.0 Release
[profile/ivi/osmesa.git] / src / getopt / SConscript
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')