summaryrefslogtreecommitdiff
path: root/src/getopt/SConscript
blob: 14cabed4e643e2a3fda09cad7daa24c205377d26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Import('*')

if not env['msvc']:
    Return()

env = env.Clone()

env.Prepend(CPPPATH = ['.'])

getopt = env.ConvenienceLibrary(
    target = 'getopt',
    source = ['getopt_long.c'],
)

Export('getopt')