Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4358 Serge 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')