44 lines
948 B
Plaintext
44 lines
948 B
Plaintext
# 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)) {
|
|
shared_library("qrcodegen") {
|
|
sources = [ "cpp/QrCode.cpp" ]
|
|
include_dirs = [ "//third_party/qrcodegen/cpp" ]
|
|
cflags = [
|
|
"-Wall",
|
|
"-fno-exceptions",
|
|
]
|
|
cflags_cc = cflags
|
|
public_configs = [ ":libqrcodegen_config" ]
|
|
}
|
|
|
|
lite_component("qrcode") {
|
|
features = [ ":qrcodegen" ]
|
|
}
|
|
} else {
|
|
ohos_static_library("qrcodegen_static") {
|
|
sources = [ "cpp/QrCode.cpp" ]
|
|
include_dirs = [ "//third_party/qrcodegen/cpp" ]
|
|
configs = [ ":qrcodegen_config" ]
|
|
public_configs = [ ":libqrcodegen_config" ]
|
|
}
|
|
}
|