mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 17:50:12 +01:00
24 lines
305 B
Text
24 lines
305 B
Text
|
|
Import('*')
|
||
|
|
|
||
|
|
if env['platform'] != 'windows':
|
||
|
|
Return()
|
||
|
|
|
||
|
|
env = env.Clone()
|
||
|
|
|
||
|
|
env.Append(LIBS = [
|
||
|
|
'kernel32',
|
||
|
|
'user32',
|
||
|
|
'gdi32',
|
||
|
|
])
|
||
|
|
|
||
|
|
progs = [
|
||
|
|
'sharedtex_mt',
|
||
|
|
'wglthreads',
|
||
|
|
]
|
||
|
|
|
||
|
|
for prog in progs:
|
||
|
|
env.Program(
|
||
|
|
target = prog,
|
||
|
|
source = prog + '/' + prog + '.c',
|
||
|
|
)
|