scons: fix MSVC, MinGW build

Duplicate the glsl_types_hack.cpp work-around from the libgl-xlib target.
This commit is contained in:
Brian Paul 2015-10-17 10:02:04 -06:00
parent 7e6aafd6ab
commit 3272f632ee
4 changed files with 21 additions and 2 deletions

View file

@ -7,6 +7,10 @@ env = env.Clone()
env.Append(CPPPATH = [
'#src',
'#src/mesa',
'#src/mapi',
'#src/glsl',
'#src/glsl/nir',
'#src/gallium/state_trackers/wgl',
'#src/gallium/winsys/sw',
])
@ -20,7 +24,11 @@ env.Append(LIBS = [
env.Prepend(LIBS = [mesautil])
sources = ['libgl_gdi.c']
sources = [
'libgl_gdi.c',
'glsl_types_hack.cpp'
]
drivers = []
if True:

View file

@ -0,0 +1,3 @@
/* errrg scons.. otherwise "scons: *** Two environments with different actions were specified for the same target: $mesa/build/linux-x86_64-debug/glsl/nir/glsl_types.os" */
#include "glsl_types.cpp"

View file

@ -5,6 +5,8 @@ env = env.Clone()
env.Prepend(CPPPATH = [
'#src/mapi',
'#src/mesa',
'#src/glsl',
'#src/glsl/nir',
#Dir('../../../mapi'), # src/mapi build path for python-generated GL API files/headers
])
@ -22,7 +24,10 @@ env.Prepend(LIBS = [
env.Append(CPPDEFINES = ['GALLIUM_TRACE', 'GALLIUM_SOFTPIPE'])
sources = ['target.c']
sources = [
'target.c',
'glsl_types_hack.cpp'
]
if env['llvm']:
env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE')

View file

@ -0,0 +1,3 @@
/* errrg scons.. otherwise "scons: *** Two environments with different actions were specified for the same target: $mesa/build/linux-x86_64-debug/glsl/nir/glsl_types.os" */
#include "glsl_types.cpp"