summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/identity/SConscript
blob: 7f079dd0a8b8e3642a2878d73997badf71e9a1b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Import('*')

env = env.Clone()

identity = env.ConvenienceLibrary(
	target = 'identity',
	source = [
		'id_screen.c',
		'id_context.c',
		'id_objects.c',
	])

Export('identity')