Skip to content

Commit

Permalink
Try to avoid empty string
Browse files Browse the repository at this point in the history
- g++ has a problem with ''
- clang++ does not seem to mind it.
  • Loading branch information
cdunn2001 committed Jun 23, 2018
1 parent b87f6db commit 59d41de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson.build
Expand Up @@ -50,8 +50,8 @@ if get_option('default_library') == 'shared' and meson.get_compiler('cpp').get_i
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(
Expand Down

0 comments on commit 59d41de

Please sign in to comment.