We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44e24d7 commit 5b5adfeCopy full SHA for 5b5adfe
meson.build
@@ -15,6 +15,8 @@ endif
15
cpp_args = [
16
'-DJSON_USE_GLOBAL_UDLS=@0@'.format(
17
(not get_option('GlobalUDLs')).to_int()),
18
+ '-DJSON_USE_IMPLICIT_CONVERSIONS=@0@'.format(
19
+ (not get_option('ImplicitConversions')).to_int()),
20
]
21
22
nlohmann_json_dep = declare_dependency(
meson_options.txt
@@ -10,3 +10,9 @@ option(
10
value: true,
11
description: 'Place user-defined string literals in the global namespace',
12
)
13
+option(
14
+ 'ImplicitConversions',
+ type: 'boolean',
+ value: true,
+ description: 'Enable implicit conversions',
+)
0 commit comments