mirror of
https://gitee.com/openharmony/third_party_qrcodegen
synced 2024-11-23 15:20:48 +00:00
e9104a60b9
IssueNo: https://gitee.com/openharmony/graphic_ui/issues/I4NPYK Feature or Bugfix: Feature Binary Source:No Signed-off-by: lizhiqi <lizhiqi1@huawei.com>
11 lines
281 B
CMake
Executable File
11 lines
281 B
CMake
Executable File
cmake_minimum_required(VERSION 3.16.5)
|
|
set(QrcodegenSrc "${PROJECT_SOURCE_DIR}/third_party/qrcodegen")
|
|
|
|
include_directories(${QrcodegenSrc})
|
|
|
|
add_library(qrcodegen STATIC
|
|
${QrcodegenSrc}/cpp/qrcodegen.cpp
|
|
)
|
|
|
|
target_include_directories(qrcodegen PUBLIC ${QrcodegenSrc}/cpp)
|