| 1234567891011121314151617181920212223242526272829303132333435 |
- import("//build/ohos.gni")
- config("it3256_config") {
- include_dirs = [
- "include",
- ]
- }
- ohos_shared_library("it3256") {
- sources = [
- "src/uart.cpp",
- "src/it32567.cpp",
- "src/command.cpp"
- ]
- cflags = [
- "-Wno-error=delete-abstract-non-virtual-dtor",
- "-Wno-error=unused-variable",
- "-Wno-error=overloaded-virtual",
- "-frtti",
- "-Wno-error=pessimizing-move"
- ]
- cflags_c = []
- cflags_cc = [
- # "--verbose",
- "-std=c++17",
- ]
- ldflags = [
- "-lpthread"
- ]
- configs = [ ":it3256_config" ]
- external_deps = [
- "hilog:libhilog",
- "napi:ace_napi"
- ]
- part_name = "sony_camera"
- subsystem_name = "_mysubsystem"
- }
|