aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2019-12-19 18:06:59 +0100
committerIgor Gnatenko <i.gnatenko.brain@gmail.com>2019-12-19 18:06:59 +0100
commita616ac00c2cd0461d98d49b7a240ec4b73111c7d (patch)
treecaadd8907bae167a96b1887b7c75deffc3fd7189
parent2c52393d12dbb16ce1d643cf020aff964da6ec89 (diff)
downloadlibnitrokey-a616ac00c2cd0461d98d49b7a240ec4b73111c7d.tar.gz
libnitrokey-a616ac00c2cd0461d98d49b7a240ec4b73111c7d.tar.bz2
meson: Bring buildsystem to parity with CMake
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
-rw-r--r--meson.build17
1 files changed, 10 insertions, 7 deletions
diff --git a/meson.build b/meson.build
index 600be6d..dc34a97 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project(
'libnitrokey', 'cpp',
- version : '3.4.1',
+ version : '3.5.0',
license : 'LGPL-3.0+',
default_options : [
'cpp_std=c++14'
@@ -150,12 +150,15 @@ if get_option('offline-tests')
endif
if get_option('tests')
tests += [
- ['test_C_API', 'test_C_API.cpp'],
- ['test1', 'test1.cc'],
- ['test2', 'test2.cc'],
- ['test3', 'test3.cc'],
- ['test_HOTP', 'test_HOTP.cc'],
- ['test_issues', 'test_issues.cc'],
+ ['test_C_API', 'test_C_API.cpp'],
+ ['test1', 'test1.cc'],
+ ['test2', 'test2.cc'],
+ ['test3', 'test3.cc'],
+ ['test_HOTP', 'test_HOTP.cc'],
+ ['test_issues', 'test_issues.cc'],
+ ['test_multiple_devices', 'test_multiple_devices.cc'],
+ ['test_strdup', 'test_strdup.cpp'],
+ ['test_safe', 'test_safe.cpp'],
]
endif
foreach tst : tests