protot/3rdparty/bgfx/3rdparty/glsl-optimizer/src/getopt/SConscript

16 lines
204 B
Python

Import('*')
if not env['msvc']:
Return()
env = env.Clone()
env.Prepend(CPPPATH = ['.'])
getopt = env.ConvenienceLibrary(
target = 'getopt',
source = ['getopt_long.c'],
)
Export('getopt')