mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-11-16 16:56:09 +00:00
Add -Wno-error=deprecated-declarations to build arguments
This works around the deprecation warning for HdyDialer.
This commit is contained in:
parent
9fe575053d
commit
8f2cddddcf
2 changed files with 4 additions and 2 deletions
|
@ -123,5 +123,6 @@ executable (
|
|||
export_dynamic : true,
|
||||
include_directories : calls_includes,
|
||||
install : true,
|
||||
link_with : calls_vala
|
||||
link_with : calls_vala,
|
||||
c_args : '-Wno-error=deprecated-declarations',
|
||||
)
|
||||
|
|
|
@ -11,7 +11,8 @@ test_env = [
|
|||
|
||||
test_cflags = [
|
||||
'-fPIE',
|
||||
'-DFOR_TESTING'
|
||||
'-DFOR_TESTING',
|
||||
'-Wno-error=deprecated-declarations'
|
||||
]
|
||||
|
||||
test_link_args = [
|
||||
|
|
Loading…
Reference in a new issue