aboutsummaryrefslogtreecommitdiff
path: root/test cases/15 mixed pch/builder.txt
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/15 mixed pch/builder.txt')
-rw-r--r--test cases/15 mixed pch/builder.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/test cases/15 mixed pch/builder.txt b/test cases/15 mixed pch/builder.txt
index acf9c3b..7438042 100644
--- a/test cases/15 mixed pch/builder.txt
+++ b/test cases/15 mixed pch/builder.txt
@@ -1,4 +1,5 @@
project('mixed C and C++ pch test', 'cxx', 'c')
-exe = executable('prog', 'main.cc', 'func.c')
-exe.pch('pch/main.hh', 'pch/func.h')
+pch = ['pch/main.hh', 'pch/func.h']
+
+exe = executable('prog', 'main.cc', 'func.c', pch : pch)