examples: Add TOD inspector tool, to do some basic analysis of TOD drivers

Will print some drivers data
This commit is contained in:
Marco Trevisan (Treviño)
2021-03-03 18:19:46 +01:00
parent a1ae3cfdaa
commit 08cf893e2e
3 changed files with 148 additions and 3 deletions
+10
View File
@@ -21,3 +21,13 @@ executable('cpp-test',
'cpp-test.cpp',
dependencies: libfprint_dep,
)
if get_option('tod')
executable('tod-inspector',
sources: 'tod-inspector.c',
dependencies: [
libfprint_dep,
tod_dep,
],
)
endif