We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a8f412 commit 5d9e635Copy full SHA for 5d9e635
meson.build
@@ -7,6 +7,8 @@ libasync_inc = include_directories('include/')
7
libasync_dep = declare_dependency(include_directories : libasync_inc)
8
9
if get_option('install_headers')
10
+ pkgconfig = import('pkgconfig')
11
+
12
install_headers(
13
'include/async/algorithm.hpp',
14
'include/async/barrier.hpp',
@@ -23,6 +25,12 @@ if get_option('install_headers')
23
25
'include/async/sequenced-event.hpp',
24
26
'include/async/wait-group.hpp',
27
subdir : 'async/')
28
29
+ pkgconfig.generate(
30
+ name : 'libasync',
31
+ description : 'An async primitives library for C++20',
32
+ version : meson.project_version(),
33
+ )
34
endif
35
36
if get_option('build_tests')
0 commit comments