summaryrefslogtreecommitdiff
path: root/test cases/common/13 pch/userDefined/meson.build
blob: 9b60572e6b50f9bce6eadedd4c5094383f1ec72e (plain)
1
2
3
4
5
6
7
8
9
10
cc = meson.get_compiler('c')
cc_id = cc.get_id()

# User supplied PCH implementation should override the auto
# generated one. PCH implementations are only supported for
# msvc and generally should not be used at all. Support for
# them is only kept for backwards compatibility.
if cc_id == 'msvc'
  exe = executable('prog', 'prog.c', c_pch : ['pch/pch.h', 'pch/pch.c'])
endif