Compare commits

...

2 Commits

Author SHA1 Message Date
17133281d2 fix: added build directory to the gitignore 2026-03-10 16:23:47 +00:00
80dc5d62eb fix: tests cmake file was missing 2026-03-10 16:11:50 +00:00
2 changed files with 17 additions and 0 deletions

2
.gitignore vendored
View File

@ -1,4 +1,6 @@
# ---> C++
# build artifacts
build/
# Prerequisites
*.d

15
tests/CMakeLists.txt Normal file
View File

@ -0,0 +1,15 @@
# Author: Unai Blazquez
# License: GPL-3-only
add_executable(test_sysfs_reader
test_sysfs_read.cxx
)
target_link_libraries(test_sysfs_reader
PRIVATE
core
gtest
gtest_main
)
add_test(NAME test_sysfs_reader COMMAND test_sysfs_reader)