OpenHarmony开发者论坛
标题:
轻量系统的案例代码应该写在哪里?
[打印本页]
作者:
liutong
时间:
2023-12-13 14:12
标题:
轻量系统的案例代码应该写在哪里?
轻量系统的案例代码应该写在哪里才能够编译到镜像中呢?写了一个c文件,结果没有出结果。。。。
作者:
dragon
时间:
2023-12-13 15:02
可以写在applications\sample\wifi-iot\app目录下,也可以写到其它位置。
关键是要有对应的编译脚本文件BUILD.gn。
比如您写了个applications\sample\wifi-iot\app\startup\hello.c
那么就要有相应的applications\sample\wifi-iot\app\startup\BUILD.gn:
static_library("hello_world") {
sources = [ "hello.c" ]
include_dirs = [
"//utils/native/lite/include",
]
}
复制代码
还要改动上层的编译脚本文件applications\sample\wifi-iot\app\BUILD.gn:
import("//build/lite/config/component/lite_component.gni")
# for "Hello World" example.
lite_component("app") {
features = [
"startup:hello_world",
]
}
复制代码
欢迎光临 OpenHarmony开发者论坛 (https://forums.openharmony.cn/)
Powered by Discuz! X3.5