未验证 提交 0078294b 编写于 作者: O openharmony_ci 提交者: Gitee

!1218 fix:【快速入门】修改注释错误格式及文件路径

Merge pull request !1218 from yaoyueyu/master
......@@ -9,14 +9,13 @@
```
applications/standard/hello
├── helloworld
│ ├── BUILD.gn
│ ├── include
│ │ └── helloworld.h
│ └── src
│ └── helloworld.c
├── BUILD.gn
├── ohos.build
productdefine/common
└── products
└── Hi3516DV300.json
......@@ -68,7 +67,7 @@ productdefine/common
```
2. 新建编译组织文件。
1. 新建applications/standard/hello/BUILD.gn文件,内容如下所示。
1. 新建applications/standard/hello/helloworld/BUILD.gn文件,内容如下所示:
```
import("//build/ohos.gni") # 导入编译模板
......@@ -104,7 +103,7 @@ productdefine/common
"phone"
],
"module_list": [ # 部件包含模块的gn目标
"//applications/standard/hello:helloworld"
"//applications/standard/hello/helloworld:helloworld"
],
"inner_kits": [ # 提供给其他部件的接口
],
......@@ -119,12 +118,12 @@ productdefine/common
3. 修改产品配置文件。
在productdefine\\common\\products\\Hi3516DV300.json中添加对应的部件,直接添加到原有部件后即可(如下代码加粗部分)
在productdefine\\common\\products\\Hi3516DV300.json中添加对应的hello部件,直接添加到原有部件后即可
```
"usb:usb_manager_native":{},
"applications:prebuilt_hap":{},
"applications:hello":{}, # "部件所属子系统名:部件名":{}
"applications:hello":{},
"wpa_supplicant-2.9:wpa_supplicant-2.9":{},
```
......
......@@ -9,14 +9,13 @@
```
applications/standard/hello
├── helloworld
│ ├── BUILD.gn
│ ├── include
│ │ └── helloworld.h
│ └── src
│ └── helloworld.c
├── BUILD.gn
├── ohos.build
productdefine/common
└── products
└── rk3568.json
......@@ -68,7 +67,7 @@ productdefine/common
```
2. 新建编译组织文件。
1. 新建applications/standard/hello/BUILD.gn文件,内容如下所示。
1. 新建applications/standard/hello/helloworld/BUILD.gn文件,内容如下所示:
```
import("//build/ohos.gni") # 导入编译模板
......@@ -104,7 +103,7 @@ productdefine/common
"phone"
],
"module_list": [ # 部件包含模块的gn目标
"//applications/standard/hello:helloworld"
"//applications/standard/hello/helloworld:helloworld"
],
"inner_kits": [ # 提供给其他部件的接口
],
......@@ -119,7 +118,7 @@ productdefine/common
3. 修改产品配置文件。
在productdefine\\common\\products\\rk3568.json中添加对应的部件,直接添加到原有部件后即可(如下代码加粗部分)
在productdefine\\common\\products\\rk3568.json中添加对应的hello部件,直接添加到原有部件后即可
```
"usb:usb_manager_native":{},
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册