userspace: Add LibQR

This library can be used to generate QR codes
This commit is contained in:
2025-10-26 22:43:09 +02:00
parent 4952a82af5
commit d93fcff5db
4 changed files with 888 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
set(LIBQR_SOURCES
QRCode.cpp
)
add_library(libqr ${LIBQR_SOURCES})
banan_link_library(libqr ban)
banan_link_library(libqr libc)
banan_install_headers(libqr)
install(TARGETS libqr OPTIONAL)