mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 17:28:09 +02:00
14 lines
174 B
Text
14 lines
174 B
Text
|
|
Import('*')
|
||
|
|
|
||
|
|
if not env['msvc']:
|
||
|
|
Return()
|
||
|
|
|
||
|
|
env = env.Clone()
|
||
|
|
|
||
|
|
getopt = env.ConvenienceLibrary(
|
||
|
|
target = 'getopt',
|
||
|
|
source = ['getopt_long.c'],
|
||
|
|
)
|
||
|
|
|
||
|
|
Export('getopt')
|