mirror of
https://github.com/feather-wallet/feather.git
synced 2024-10-31 17:37:43 +00:00
19 lines
317 B
Text
19 lines
317 B
Text
|
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)
|