14 lines
279 B
Plaintext
14 lines
279 B
Plaintext
import("//build/ohos.gni")
|
|
import("//build/config/sysroot.gni")
|
|
|
|
config("native_rdb_public_config") {
|
|
include_dirs = [
|
|
"${sysroot}/usr/include/relational_store/"
|
|
]
|
|
libs = [ "native_rdb.z" ]
|
|
}
|
|
|
|
group("native_rdb") {
|
|
public_configs = [ ":native_rdb_public_config" ]
|
|
}
|