blob: 88d068a338c319681a38cefea7bf822f531a5cd2 (
plain)
1
2
3
4
5
6
7
8
|
# Copy public headers scattered across the source tree into a single directory
# so that we can use it in declare_dependency()
foreach h : public_headers
configure_file(input: h,
output: '@BASENAME@.h',
copy: true)
endforeach
public_incs = include_directories('.')
|