The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
245 B
9 lines
245 B
2 years ago
|
# 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)
|