tests/15 mixed pch: Use current style

This commit is contained in:
Dylan Baker 2018-02-14 10:31:18 -08:00
parent c027bb2c42
commit 1270af4b9a
1 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,9 @@
project('mixed C and C++ pch test', 'cpp', 'c')
exe = executable('prog', 'main.cc', 'func.c',
c_pch : ['pch/func.h', 'pch/func_pch.c'],
cpp_pch : ['pch/main_pch.cc', 'pch/main.h'])
exe = executable(
'prog',
files('main.cc', 'func.c'),
c_pch : ['pch/func.h', 'pch/func_pch.c'],
cpp_pch : ['pch/main_pch.cc', 'pch/main.h'],
)