aboutsummaryrefslogblamecommitdiff
path: root/meson.build
blob: 038457969b786ce8b9d61a170fffe757ec6dc9d6 (plain) (tree)
1
2
3
4
5
6
7
8





                                

                                  


         


                                            
                                    




                        
                                                  

                                          

                      
project(
        'npass',
        'c',
        version : '0.1',
        license: 'GPL-3.0-only',
        default_options : [
                'c_std=c99',
                'warning_level=2',
        ]
)

add_project_arguments(
	[
		'-D_POSIX_C_SOURCE=200809L',
		'-D_DEFAULT_SOURCE',
		'-Wvla',
	],
	language: 'c',
)

gpgme_dep = dependency('gpgme', version: '>= 1.0')
npass_inc = include_directories('include')

subdir('src/libnpass')
subdir('src/npass')