mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 19:00:13 +01:00
This is a substantial reorganization, This particular commit enables: - building the progs for unices platforms - glew is now built as a shared library (it is the default, and it is inconvenient and pointless to shift away from that default) - all progs get built by default
17 lines
276 B
Python
17 lines
276 B
Python
Import('*')
|
|
|
|
if progs_env['platform'] != 'windows':
|
|
Return()
|
|
|
|
progs = [
|
|
'sharedtex_mt',
|
|
'wglthreads',
|
|
]
|
|
|
|
for prog in progs:
|
|
progs_env.Program(
|
|
target = prog,
|
|
source = prog + '/' + prog + '.c',
|
|
)
|
|
|
|
progs_env.Program('wglinfo', ['wglinfo.c'])
|