initial commit

This commit is contained in:
2018-09-13 16:25:44 -03:00
commit d34bd8f72e
14 changed files with 350 additions and 0 deletions

10
meson.build Normal file
View File

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