summaryrefslogtreecommitdiff
path: root/src/sna/brw/meson.build
blob: fcf2b120ed326416597ffd94e463f1c61484f024 (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
brw_deps = [
  xorg,
  libudev,
  libdrm,
]

if with_valgrind
  brw_deps += valgrind
endif

brw = static_library('brw',
		     sources : [
		       'brw_disasm.c',
		       'brw_eu.c',
		       'brw_eu_emit.c',
		       'brw_sf.c',
		       'brw_wm.c',
		     ],
		     dependencies : brw_deps,
		     include_directories : inc,
		     c_args : [
		       '-Wno-unused-parameter',
		       '-Wno-sign-compare',
		     ],
		     install : false)

executable('brw_test',
	   sources : [
	     'brw_test.c',
	     'brw_test_gen4.c',
	     'brw_test_gen5.c',
	     'brw_test_gen6.c',
	     'brw_test_gen7.c',
	   ],
	   link_with : brw,
	   include_directories : inc,
	   c_args : [
	     '-Wno-unused-const-variable',
	     '-Wno-unused-parameter',
	   ],
	   install : false)