summaryrefslogtreecommitdiffstats
path: root/test cases/common/126 generated llvm ir/meson.build
blob: fddee2bc2a29569b40bcb30247f165b5afb47e9b (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
project('generated llvm ir', 'c')

if meson.get_compiler('c').get_id() != 'clang'
  error('MESON_SKIP_TEST: LLVM IR files can only be built with clang')
endif

if meson.backend() == 'xcode'
  error('MESON_SKIP_TEST: LLVM ir not supported with the Xcode backend. Patches welcome.')
endif

copy = find_program('copyfile.py')

copygen = generator(copy,
  arguments : ['@INPUT@', '@OUTPUT@'],
  output : '@BASENAME@')

l = library('square-gen', copygen.process('square.ll.in'))

test('square-gen-test', executable('square-gen-test', 'main.c', link_with : l))

copyct = custom_target('square',
  input : 'square.ll.in',
  output : 'square.ll',
  command : [copy, '@INPUT@', '@OUTPUT@'])

l = library('square-ct', copyct)

test('square-ct-test', executable('square-ct-test', 'main.c', link_with : l))