Add meson.build
FossilOrigin-Name: 0992287dbb84e66482d31c2c4df8b6501fa3b818f9d5891726e11dc26e21840b
This commit is contained in:
parent
ee5c908943
commit
e650ba1a0f
4 changed files with 17 additions and 11 deletions
15
meson.build
Normal file
15
meson.build
Normal file
|
@ -0,0 +1,15 @@
|
|||
project('CryptoPassphrase', 'objc',
|
||||
version: '1.3',
|
||||
meson_version: '>= 1.5.0')
|
||||
|
||||
objfw_dep = dependency('objfw')
|
||||
|
||||
executable('cryptopassphrase',
|
||||
[
|
||||
'CryptoPassphrase.m',
|
||||
'LegacyPasswordGenerator.m',
|
||||
'NewPasswordGenerator.m'
|
||||
],
|
||||
dependencies: [objfw_dep],
|
||||
pie: true,
|
||||
install: true)
|
Loading…
Add table
Add a link
Reference in a new issue