ca0423e4ad89efaeb59fb15345c3239b1ff09ddc
[mesa.git] / src / mesa / drivers / haiku / swrast / SConscript
1 Import('*')
2
3 env = env.Clone()
4
5 env.Append(CPPPATH = [
6 '#/src/mapi',
7 '#/src/mesa',
8 '#/src/mesa/main',
9 '#/include/HaikuGL',
10 '/boot/system/develop/headers/private',
11 Dir('../../../mapi'), # src/mapi build path for python-generated GL API files/headers
12 ])
13
14 env.Prepend(LIBS = [
15 glsl,
16 mesa,
17 ])
18
19 sources = [
20 'SoftwareRast.cpp'
21 ]
22
23 # Disallow undefined symbols
24 #env.Append(SHLINKFLAGS = ['-Wl,-z,defs'])
25
26 libswrast = env.SharedLibrary(
27 target = 'swrast',
28 source = sources
29 )