summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/4 code gen/meson.build
blob: 80c801fa00c5d8fd9d55e870860cc41b2ecae5ed (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
project('cmake_code_gen', ['c', 'cpp'])

if meson.is_cross_build()
  error('MESON_SKIP_TEST this test does not cross compile correctly.')
endif

cm = import('cmake')

# Subproject with the "code generator"
sub_pro = cm.subproject('cmCodeGen')
sub_exe = sub_pro.target('genA')

# Generate the source
generated = custom_target(
  'cmake-generated',
  input: [],
  output: ['test.cpp'],
  command: [sub_exe, '@OUTPUT@']
)

# Build the exe
exe1 = executable('main1', ['main.cpp', generated])

test('test1', exe1)