diff options
author | 2019-03-31 13:54:43 +0300 | |
---|---|---|
committer | 2019-03-31 13:54:43 +0300 | |
commit | e1f1b3db7cefe66613c4459d338236155e19d59f (patch) | |
tree | ef717573162bf6e9be93810cf01413b9cb3b014b /meson.build | |
parent | 5c843d16f0e5a0ba526620645711df14291ef758 (diff) | |
download | librin-e1f1b3db7cefe66613c4459d338236155e19d59f.tar.gz librin-e1f1b3db7cefe66613c4459d338236155e19d59f.tar.bz2 librin-e1f1b3db7cefe66613c4459d338236155e19d59f.zip |
gpio: removed due to being useless.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/meson.build b/meson.build index 9a7b459..057e6d4 100644 --- a/meson.build +++ b/meson.build @@ -7,27 +7,19 @@ inc = include_directories('include') pkg = import('pkgconfig') -if get_option('gpio') - thread_dep = dependency('threads') -else - thread_dep = [] -endif - -deps = thread_dep - subdir('include') subdir('src') if ((not get_option('static')) and (not get_option('shared'))) - librin = library('rin', sources, version : '0.0.0', include_directories : inc, install : true, dependencies : deps) + librin = library('rin', sources, version : '0.0.0', include_directories : inc, install : true) endif if get_option('static') - librin = static_library('rin', sources, version : '0.0.0', include_directories : inc, install : true, dependencies : deps) + librin = static_library('rin', sources, version : '0.0.0', include_directories : inc, install : true) endif if get_option('shared') - librin = shared_library('rin', sources, version : '0.0.0', include_directories : inc, install : true, dependencies : deps) + librin = shared_library('rin', sources, version : '0.0.0', include_directories : inc, install : true) endif pkg.generate(librin) @@ -42,7 +34,6 @@ if get_option('tests') test('compare floats', test_e, args : ['float', 'comparefloat']) test('compare doubles', test_e, args : ['float', 'comparedouble']) test('diagnostic', test_e, args : ['diagnostic', 'none']) - test('gpio', test_e, args : ['gpio', 'none']) test('time add', test_e, args : ['time', 'add']) test('time subtract', test_e, args : ['time', 'sub']) test('time normalize', test_e, args : ['time', 'normalize']) |