Add -Wno-error=deprecated-declarations to build arguments
This works around the deprecation warning for HdyDialer.
This commit is contained in:
@@ -123,5 +123,6 @@ executable (
|
|||||||
export_dynamic : true,
|
export_dynamic : true,
|
||||||
include_directories : calls_includes,
|
include_directories : calls_includes,
|
||||||
install : true,
|
install : true,
|
||||||
link_with : calls_vala
|
link_with : calls_vala,
|
||||||
|
c_args : '-Wno-error=deprecated-declarations',
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -11,7 +11,8 @@ test_env = [
|
|||||||
|
|
||||||
test_cflags = [
|
test_cflags = [
|
||||||
'-fPIE',
|
'-fPIE',
|
||||||
'-DFOR_TESTING'
|
'-DFOR_TESTING',
|
||||||
|
'-Wno-error=deprecated-declarations'
|
||||||
]
|
]
|
||||||
|
|
||||||
test_link_args = [
|
test_link_args = [
|
||||||
|
|||||||
Reference in New Issue
Block a user