1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| srcs_xorg_x86emu = [
| 'debug.c',
| 'decode.c',
| 'fpu.c',
| 'ops2.c',
| 'ops.c',
| 'prim_ops.c',
| 'sys.c',
| ]
|
| xorg_x86emu = static_library('x86emu',
| srcs_xorg_x86emu,
| include_directories: [inc, xorg_inc],
| dependencies: common_dep,
| )
|
|