test_eventfd_0_1_0.toml 596 B

1234567891011121314151617181920212223242526272829303132
  1. # 用户程序名称
  2. name = "test_eventfd"
  3. # 版本号
  4. version = "0.1.0"
  5. # 用户程序描述信息
  6. description = "test_eventfd"
  7. # 目标架构
  8. target-arch = ["x86_64"]
  9. # 任务源
  10. [task-source]
  11. # 构建类型
  12. type = "build-from-source"
  13. # 构建来源
  14. source = "local"
  15. # 路径或URL
  16. source-path = "user/apps/test_eventfd"
  17. # 构建相关信息
  18. [build]
  19. # (可选)构建命令
  20. build-command = "make install"
  21. # 安装相关信息
  22. [install]
  23. # (可选)安装到DragonOS的路径
  24. in-dragonos-path = "/bin"
  25. # 清除相关信息
  26. [clean]
  27. # (可选)清除命令
  28. clean-command = "make clean"