commit | 59d41de5b1d5588e310f2f31552c66d4f3beef33 | [log] [tgz] |
---|---|---|
author | Christopher Dunn <cdunn2001@gmail.com> | Sat Jun 23 17:34:40 2018 -0500 |
committer | Christopher Dunn <cdunn2001@gmail.com> | Sat Jun 23 18:08:53 2018 -0500 |
tree | 34b50df3bc7d3ca0a04a6c61ff46c7945d4a249c | |
parent | b87f6dbc8a732ea785798cc76d66314eea38f008 [diff] [blame] |
Try to avoid empty string - g++ has a problem with '' - clang++ does not seem to mind it.
diff --git a/meson.build b/meson.build index 058d55a..a338cc0 100644 --- a/meson.build +++ b/meson.build
@@ -50,8 +50,8 @@ dll_export_flag = '-DJSON_DLL_BUILD' dll_import_flag = '-DJSON_DLL' else - dll_export_flag = '' - dll_import_flag = '' + dll_export_flag = [] + dll_import_flag = [] endif jsoncpp_lib = library(