add dynamic version to build via meson

remove unused arg in misc
mark arg as unused in addtax
update translations
This commit is contained in:
2018-09-25 16:36:01 -03:00
parent 8e5ddc62e7
commit 43ea64918b
10 changed files with 44 additions and 26 deletions

View File

@@ -1,10 +1,16 @@
project('addtax',
'c',
version : '1.0.0',
version : '1.0.2',
license : 'BSD-3',
default_options : [ 'b_ofast=if-release', 'b_march_native=if-release', 'b_ndebug=if-release' ]
default_options : [ 'b_ofast=if-release',
'b_march_native=if-release',
'b_ndebug=if-release',
'warning_level=3',
'c_std=c11'
]
)
add_global_arguments('-DGETTEXT_PACKAGE="addtax"', language: 'c')
subdir('po')
subdir('glade')
subdir('src/include')
subdir('src')