ladybird/Userland/Libraries/LibDeviceTree/CMakeLists.txt
Andrew Kaster e9e279bb77 LibDeviceTree: Add walk_device_tree and use it to dump structured data
We can use this simple parser and its callbacks to implement more
complex parsing in later commits.
2023-02-19 13:49:07 +01:00

9 lines
151 B
CMake

set(SOURCES
FlattenedDeviceTree.cpp
Validation.cpp
)
serenity_lib(LibDeviceTree DeviceTree)
target_link_libraries(LibDeviceTree PRIVATE LibCore)