1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 03:50:45 +00:00
serenity/Tests/LibEDID/CMakeLists.txt
Tom 8184870f93 LibEDID: Add a library to parse EDID blobs
This library can be used (for the most part) by kernel drivers as well
as user mode. For this reason FixedPoint is used rather than floating
point, but kept to a minimum.
2022-01-23 22:45:21 +00:00

8 lines
140 B
CMake

set(TEST_SOURCES
TestEDID.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibEDID LIBS LibEDID)
endforeach()