Skip to content

Commit 6d83f45

Browse files
dcbakerpre-commit-ci[bot]henryiii
authored
More Meson work (#1025)
This is follow up work to my previous series. I've tried to make the Meson build mirror the CMake build more closely. I've also made an attempt at adding some instructions to the documents on using Meson. --------- Signed-off-by: Henry Schreiner <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <[email protected]>
1 parent 1a1d9d4 commit 6d83f45

File tree

7 files changed

+127
-11
lines changed

7 files changed

+127
-11
lines changed

azure-pipelines.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ jobs:
100100
displayName: generate test directories
101101
- script: ln -s "$(pwd)" tests/mesonTest/subprojects/CLI11
102102
displayName: generate CLI11 symlink
103-
- script: meson build
103+
# Ensure that Meson doesn't use cmake or pkgconfig to find CLI11
104+
- script: meson setup build --force-fallback-for=CLI11
104105
displayName: Run meson to generate build
105106
workingDirectory: tests/mesonTest
106107
- script: ninja -C tests/mesonTest/build

book/chapters/installation.md

+27-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ If the CMake option `CLI11_PRECOMPILED` is set then the library is compiled into
5151
a static library. This can be used to improve compile times if CLI11 is included
5252
in many different parts of a project.
5353

54-
### Global Headers
54+
#### Global Headers
5555

5656
Use `CLI/*.hpp` files stored in a shared folder. You could check out the git
5757
repository to a system-wide folder, for example `/opt/`. With CMake, you could
@@ -194,6 +194,32 @@ default to off if CLI11 is used as a subdirectory in another project.
194194
nothing special about this container. Alpine is being used because it is
195195
small, modern, and fast. Commands are similar on any other platform.
196196

197+
## Meson support
198+
199+
### Global Headers from pkg-config
200+
201+
If CLI11 is installed globally, then nothing more than `dependency('CLI11')` is
202+
required. If it installed in a non-default search path, then setting the
203+
`PKG_CONFIG_PATH` environment variable of the `--pkg-config-path` option to
204+
`meson setup` is all that's required.
205+
206+
### Using Meson's subprojects
207+
208+
Meson has a system called
209+
[wraps](https://mesonbuild.com/Wrap-dependency-system-manual.html), which allow
210+
Meson to fetch sources, configure, and build dependencies as part of a main
211+
project. This is the mechanism that Meson recommends for projects to use, as it
212+
allows updating the dependency transparently, and allows packagers to have fine
213+
grained control on the use of subprojects vs system provided dependencies.
214+
Simply run `meson wrap install cli11` to install the `cli11.wrap` file, and
215+
commit it, if desired.
216+
217+
It is also possible to use git submodules. This is generally discouraged by
218+
Meson upstream, but may be appropriate if a project needs to build with multiple
219+
build systems and wishes to share subprojects between them. As long as the
220+
submodule is in the parent project's subproject directory nothing additional is
221+
needed.
222+
197223
## Installing cli11 using vcpkg
198224

199225
You can download and install cli11 using the

meson.build

+70-7
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,84 @@ project('CLI11', ['cpp'],
77

88
cxx = meson.get_compiler('cpp')
99

10+
use_single_header = get_option('single-file-header')
11+
use_precompiled = get_option('precompiled')
12+
13+
if use_precompiled and use_single_header
14+
error('Options "single-file"header" and "precompiled" are mutually exclusive')
15+
endif
16+
17+
cli11_headers = files(
18+
'include/CLI/App.hpp',
19+
'include/CLI/Argv.hpp',
20+
'include/CLI/CLI.hpp',
21+
'include/CLI/Config.hpp',
22+
'include/CLI/ConfigFwd.hpp',
23+
'include/CLI/Encoding.hpp',
24+
'include/CLI/Error.hpp',
25+
'include/CLI/Formatter.hpp',
26+
'include/CLI/FormatterFwd.hpp',
27+
'include/CLI/Macros.hpp',
28+
'include/CLI/Option.hpp',
29+
'include/CLI/Split.hpp',
30+
'include/CLI/StringTools.hpp',
31+
'include/CLI/TypeTools.hpp',
32+
'include/CLI/Validators.hpp',
33+
'include/CLI/Version.hpp',
34+
)
35+
36+
cli11_impl_headers = files(
37+
'include/CLI/impl/App_inl.hpp',
38+
'include/CLI/impl/Argv_inl.hpp',
39+
'include/CLI/impl/Config_inl.hpp',
40+
'include/CLI/impl/Encoding_inl.hpp',
41+
'include/CLI/impl/Formatter_inl.hpp',
42+
'include/CLI/impl/Option_inl.hpp',
43+
'include/CLI/impl/Split_inl.hpp',
44+
'include/CLI/impl/StringTools_inl.hpp',
45+
'include/CLI/impl/Validators_inl.hpp',
46+
)
47+
48+
subdir('single-include')
49+
1050
CLI11_inc = include_directories(['include'])
1151

52+
warnings = ['-Wshadow', '-Wsign-conversion', '-Wswitch-enum']
53+
if cxx.get_id() == 'gcc' and cxx.version().version_compare('>=4.9')
54+
warnings += '-Weffc++'
55+
endif
56+
if cxx.get_id() == 'clang'
57+
warnings += [
58+
'-Wcast-align',
59+
'-Wimplicit-atomic-properties',
60+
'-Wmissing-declarations',
61+
'-Woverlength-strings',
62+
'-Wstrict-selector-match',
63+
'-Wundeclared-selector',
64+
]
65+
endif
66+
add_project_arguments(cxx.get_supported_arguments(warnings), language: 'cpp')
67+
68+
if use_precompiled
69+
libcli11 = static_library(
70+
'CLI11',
71+
'src/Precompile.cpp',
72+
include_directories : CLI11_inc,
73+
cpp_args : ['-DCLI11_COMPILE'],
74+
)
75+
else
76+
libcli11 = []
77+
endif
78+
1279
CLI11_dep = declare_dependency(
80+
sources : single_header,
81+
link_with : libcli11,
1382
include_directories : CLI11_inc,
1483
version : meson.project_version(),
1584
)
1685

1786
meson.override_dependency('CLI11', CLI11_dep)
1887

1988
if get_option('tests')
20-
warnings = ['-Wshadow', '-Wsign-conversion', '-Wswitch-enum']
21-
if cxx.get_id() == 'gcc' and cxx.version().version_compare('>=4.9')
22-
warnings += '-Weffc++'
23-
endif
24-
add_project_arguments(cxx.get_supported_arguments(warnings), language: 'cpp')
25-
26-
subdir('tests')
89+
subdir('tests')
2790
endif

meson_options.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
option('tests', type: 'boolean', value: false, description: 'Build CLI11 tests')
2+
option('single-file-header', type: 'boolean', value: false, description : 'Generate a single header file.')
3+
option('precompiled', type: 'boolean', value: false, description : 'Generate a precompiled static library instead of a header-only')

single-include/meson.build

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Because Meson does not allow outputs to be placed in subfolders, we must have
2+
# meson.build here when generating the single file header so that it is placced
3+
# in the correct location.
4+
5+
prog_python = find_program('python')
6+
7+
single_main_file = files('CLI11.hpp.in')
8+
9+
if use_single_header
10+
single_header = custom_target(
11+
'CLI11.hpp',
12+
input: [files('../scripts/MakeSingleHeader.py'), cli11_headers, cli11_impl_headers],
13+
output: 'CLI11.hpp',
14+
command : [prog_python, '@INPUT@', '--main', single_main_file, '--output', '@OUTPUT@'],
15+
depend_files: [single_main_file],
16+
)
17+
else
18+
# the `declare_dependency` needs to have the single_header source as a source
19+
# dependency, to ensure that the generator runs before any attempts to include
20+
# the header happen. Adding an empty list is an idiomatic way to ensure the
21+
# variable exists but does nothing
22+
single_header = []
23+
endif

tests/meson.build

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ testnames = [
5858
['ComplexTypeTest', {}],
5959
['TrueFalseTest', {}],
6060
['OptionGroupTest', {}],
61+
['EncodingTest', {}],
6162
# multi-only
6263
['TimerTest', {}],
6364
# link_test

tests/mesonTest/meson.build

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
project('mesonTest', ['c', 'cpp'], default_options: ['cpp_std=c++11'])
1+
project('mesonTest', ['cpp'], default_options: ['cpp_std=c++11'])
22

3-
cli11_dep = subproject('CLI11').get_variable('CLI11_dep')
3+
cli11_dep = dependency('CLI11')
44

55
mainExe = executable('main', ['main.cpp'], dependencies: [cli11_dep])

0 commit comments

Comments
 (0)