summaryrefslogtreecommitdiffstats
path: root/test cases/common/13 pch/linkwhole/meson.build
blob: dec76ba40ccbc0294f72d0e022ea538940aac9eb (plain)
1
2
3
4
5
6
7
8
# https://github.com/mesonbuild/meson/issues/10745

l2 = static_library('two', 'lib2.c', c_pch: 'pch2/pch_two.h')
l1 = static_library('one', 'lib1.c', c_pch: 'pch1/pch_one.h',
  link_whole: l2)

executable('linkprog', 'main.c',
  link_with: l1)