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

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

env = env.Clone()

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

Export('getopt')