summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/gdi/SConscript
blob: cc6aa6634fd799c55a0f84eef0f195b522d79c98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#######################################################################
# SConscript for gdi winsys

Import('*')

if env['platform'] == 'windows':

	env = env.Clone()

	env.Append(CPPPATH = [
		'#src/mesa/state_tracker/wgl',
	])

	env.Append(CPPDEFINES = [
	])

	env.Append(CPPDEFINES = [
		'__GL_EXPORTS',
		'BUILD_GL32',
		'_GNU_H_WINDOWS32_DEFINES',
	])

	sources = [
		'#src/mesa/state_tracker/wgl/opengl32.def',
		'gdi_softpipe_winsys.c',
	]
		
	drivers = [
		softpipe,
	]

	env.Append(LIBS = [
		'gdi32', 
		'user32'
	])

	env.SharedLibrary(
		target ='opengl32',
		source = sources,
		LIBS = wgl + glapi + mesa + drivers + auxiliaries + env['LIBS'],
	)