summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/identity/SConscript
blob: b364e0acc84a4f97d95d94b3308b53021a52f271 (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_context.c',
		'id_objects.c',
		'id_screen.c',
	])

Export('identity')