mirror of
https://github.com/feather-wallet/feather.git
synced 2024-10-31 09:27:41 +00:00
5d18631779
This will eventually replace ZBAR.
18 lines
317 B
CMake
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)
|