2021-03-11 10:38:29 +00:00
|
|
|
# Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
|
|
|
|
|
|
|
|
if (defined(ohos_lite)) {
|
|
|
|
import("//build/lite/config/component/lite_component.gni")
|
|
|
|
} else {
|
|
|
|
import("//build/ohos.gni")
|
|
|
|
}
|
|
|
|
|
|
|
|
config("libqrcodegen_config") {
|
|
|
|
include_dirs = [ "cpp" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
config("qrcodegen_config") {
|
|
|
|
cflags = [
|
|
|
|
"-Wall",
|
|
|
|
"-fexceptions",
|
|
|
|
]
|
|
|
|
cflags_cc = cflags
|
|
|
|
}
|
|
|
|
|
|
|
|
if (defined(ohos_lite)) {
|
2021-09-09 03:38:59 +00:00
|
|
|
lite_library("qrcodegen") {
|
|
|
|
if (ohos_kernel_type == "liteos_m") {
|
|
|
|
target_type = "static_library"
|
|
|
|
} else {
|
|
|
|
target_type = "shared_library"
|
|
|
|
}
|
2021-12-22 13:00:55 +00:00
|
|
|
sources = [ "cpp/qrcodegen.cpp" ]
|
2021-03-11 10:38:29 +00:00
|
|
|
include_dirs = [ "//third_party/qrcodegen/cpp" ]
|
2021-09-09 03:38:59 +00:00
|
|
|
cflags = [ "-Wall" ]
|
2021-03-11 10:38:29 +00:00
|
|
|
cflags_cc = cflags
|
|
|
|
public_configs = [ ":libqrcodegen_config" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
lite_component("qrcode") {
|
|
|
|
features = [ ":qrcodegen" ]
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ohos_static_library("qrcodegen_static") {
|
2021-12-22 13:00:55 +00:00
|
|
|
sources = [ "cpp/qrcodegen.cpp" ]
|
2021-03-11 10:38:29 +00:00
|
|
|
include_dirs = [ "//third_party/qrcodegen/cpp" ]
|
|
|
|
configs = [ ":qrcodegen_config" ]
|
|
|
|
public_configs = [ ":libqrcodegen_config" ]
|
|
|
|
}
|
|
|
|
}
|