aboutsummaryrefslogtreecommitdiff
path: root/tcg/meson.build
blob: 5be39155298ebcf3bed3eed9c7707899b4979034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
tcg_ss = ss.source_set()

tcg_ss.add(files(
  'optimize.c',
  'region.c',
  'tcg.c',
  'tcg-common.c',
  'tcg-op.c',
  'tcg-op-gvec.c',
  'tcg-op-vec.c',
))
tcg_ss.add(when: 'CONFIG_TCG_INTERPRETER', if_true: files('tci.c'))

specific_ss.add_all(when: 'CONFIG_TCG', if_true: tcg_ss)