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

env = env.Clone()

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

env.Alias('identity', identity)

Export('identity')