fix: tests cmake file was missing

This commit is contained in:
unai_71 2026-03-10 16:11:50 +00:00
parent cb8cfd6da8
commit 80dc5d62eb

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)