ladybird/Userland/Libraries/LibDeviceTree/CMakeLists.txt
Andrew Kaster 644928314a Libraries: Add LibDeviceTree for manipulating OpenFirmware Device Trees
Starting with header validation and a dump() method that can be used to
debug future parsing work.
2021-10-21 19:20:03 -07:00

7 lines
122 B
CMake

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