当前位置:   article > 正文

鸿蒙仓颉语言【模块module】

鸿蒙仓颉语言【模块module】

module 模块

模块配置文件,这里指项目的modules.json 文件,用于描述代码项目的基础元属性。
在这里插入图片描述

{
  "name": "file name", //当前项目的名称
  "description": "项目描述", //项目描述
  "version": "1.0.0", //当前模块版本号
  "output_type": "static", //模块编译输出类型,static 指编译输出为静态库
  "cjc_version": "0.62.2", //仓颉编译器版本
  "command_option": "-Woff unused", //编译选项
  "organization": "org name", //组织名称
  "requires": { //需要和依赖的仓颉代码模块,这个功能类似于Go,直接将代码合并入当前工程来编译
    "bits": {
      "branch": "master",
      "version": "0.1.0",
      "git": "https://gitee.com/HW-PLLab/bits.git"
    },
    "charset": {
      "branch": "develop",
      "version": "0.0.2",
      "git": "https://gitee.com/HW-PLLab/charset.git"
    }
  },
  "package_requires": { //其他非代码类包依赖
    "path_option": [], //文件路径选项
    "package_option": {} //包选项
  },
  "foreign_requires": {}, //跨语言模块依赖
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/887688
推荐阅读
相关标签
  

闽ICP备14008679号