20 lines
502 B
Plaintext
20 lines
502 B
Plaintext
import("//build/ohos.gni")
|
|
import("//build/config/sysroot.gni")
|
|
|
|
config("libeventhandler_config") {
|
|
include_dirs = [ "${sysroot}/usr/include/eventhandler" ]
|
|
libs = ["eventhandler.z"]
|
|
}
|
|
group("libeventhandler") {
|
|
public_configs = [ ":libeventhandler_config" ]
|
|
}
|
|
|
|
config("eventhandler_native_config") {
|
|
include_dirs = [ "${sysroot}/usr/include/eventhandler" ]
|
|
libs = ["eventhandler_native.z"]
|
|
}
|
|
group("eventhandler_native") {
|
|
public_configs = [ ":eventhandler_native_config" ]
|
|
}
|
|
|