Files
third_party_mesa3d/src/gallium/winsys/gdi/SConscript
José Fonseca 6cf59e1293 scons: Support MinGW32 cross compiler.
To build an alternative opengl32.dll with Gallium's software-rasterizer from a
debian-based distribution run:

  sudo apt-get install mingw32
  scons platform=windows toolchain=crossmingw machine=x86 winsys=gdi dri=no
2008-11-18 19:13:32 +09:00

40 lines
683 B
Python

#######################################################################
# SConscript for gdi winsys
Import('*')
if env['platform'] == 'windows':
env = env.Clone()
env.Append(CPPPATH = [
'#src/mesa/glapi',
'#src/mesa',
'#src/mesa/main',
])
env.Append(CPPDEFINES = [
'__GL_EXPORTS',
'BUILD_GL32',
'_GNU_H_WINDOWS32_DEFINES',
])
sources = [
'opengl32.def',
'wgl.c',
'wmesa.c',
]
drivers = [
softpipe,
]
env.Append(LIBS = ['gdi32', 'user32'])
# TODO: write a wrapper function http://www.scons.org/wiki/WrapperFunctions
env.SharedLibrary(
target ='opengl32',
source = sources,
LIBS = glapi + mesa + drivers + auxiliaries + env['LIBS'],
)