feather/contrib/depends/patches/quirc/CMakeLists.txt
tobtoht 5d18631779
depends: add quirc
This will eventually replace ZBAR.
2023-07-11 02:25:38 +02:00

18 lines
317 B
CMake

cmake_minimum_required(VERSION 3.5)
project(quirc)
add_library(quirc STATIC
lib/decode.c
lib/identify.c
lib/quirc.c
lib/version_db.c
)
target_include_directories(quirc PUBLIC lib)
install(TARGETS quirc)
install(FILES
lib/quirc.h
DESTINATION include/quirc)