@@ -7,21 +7,84 @@ project('CLI11', ['cpp'],
7
7
8
8
cxx = meson .get_compiler(' cpp' )
9
9
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
+
10
50
CLI11_inc = include_directories ([' include' ])
11
51
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
+
12
79
CLI11_dep = declare_dependency (
80
+ sources : single_header,
81
+ link_with : libcli11,
13
82
include_directories : CLI11_inc,
14
83
version : meson .project_version(),
15
84
)
16
85
17
86
meson .override_dependency(' CLI11' , CLI11_dep)
18
87
19
88
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' )
27
90
endif
0 commit comments