2023-08-29 19:53:34 +08:00
|
|
|
import("//build/ohos.gni")
|
2024-06-29 09:25:18 +08:00
|
|
|
import("//build/config/sysroot.gni")
|
2023-08-29 19:53:34 +08:00
|
|
|
|
|
|
|
|
config("native_rdb_public_config") {
|
|
|
|
|
include_dirs = [
|
2024-06-29 09:25:18 +08:00
|
|
|
"${sysroot}/usr/include/relational_store/"
|
2023-08-29 19:53:34 +08:00
|
|
|
]
|
|
|
|
|
libs = [ "native_rdb.z" ]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
group("native_rdb") {
|
|
|
|
|
public_configs = [ ":native_rdb_public_config" ]
|
|
|
|
|
}
|