mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2024-12-26 10:41:03 +08:00
Try to avoid empty string
- g++ has a problem with '' - clang++ does not seem to mind it.
This commit is contained in:
parent
b87f6dbc8a
commit
59d41de5b1
@ -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(
|
||||
|
Loading…
x
Reference in New Issue
Block a user