1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 18:55:07 +00:00
serenity/Userland/Libraries/LibUSBDB/CMakeLists.txt
Jesse Buhagiar 01cd474930 Userland/Libraries: Add LibUSBDB library
Simple clone of LibPCIDB to support USB IDs instead of PCI
ones. The format is basically identical, besides a few changes
of the double tab fields.
2021-06-18 17:04:57 +04:30

6 lines
98 B
CMake

set(SOURCES
Database.cpp
)
serenity_lib(LibUSBDB usbdb)
target_link_libraries(LibUSBDB LibC)