notification_eventhandler/eventhandler.BUILD.gn

20 lines
502 B
Plaintext
Raw Normal View History

2024-04-22 17:35:17 +08:00
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" ]
}