notification_eventhandler/eventhandler.BUILD.gn

19 lines
445 B
Plaintext

import("//build/ohos.gni")
config("libeventhandler_config") {
include_dirs = [ "/usr/include/eventhandler" ]
libs = ["eventhandler.z"]
}
group("libeventhandler") {
public_configs = [ ":libeventhandler_config" ]
}
config("eventhandler_native_config") {
include_dirs = [ "/usr/include/eventhandler" ]
libs = ["eventhandler_native.z"]
}
group("eventhandler_native") {
public_configs = [ ":eventhandler_native_config" ]
}