| 1234567891011121314151617181920212223242526272829303132333435 |
- import("//build/ohos.gni")
- config("it3256_controller_config") {
- include_dirs = [
- "include"
- ]
- }
- ohos_executable("it3256_get_exe") {
- sources = [
- "src/main.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"
- ]
- external_deps = [
- "hilog:libhilog"
- ]
- configs = [ ":it3256_controller_config" ]
- part_name = "sony_camera"
- subsystem_name = "_mysubsystem"
- install_enable = true
- install_images = [ "vendor" ]
- }
|