blob: 78496e7e1af0a33e01ecbd77bab9a872ba7f22cf (
plain)
1
2
3
4
5
6
7
8
9
|
Import('hostenv')
# tastes like -*- python -*-
conf = hostenv.Configure()
conf.env['HAVE_EXTERNAL_POPT'] = conf.CheckLibWithHeader('popt', 'popt.h', 'c', 'poptGetArgs(NULL);')
conf.Finish()
popt = hostenv.StaticLibrary('popt', ['findme.c','popt.c','poptconfig.c','popthelp.c','poptparse.c'])
Export('popt')
|