tx-gxx-linux/device/gxx-linux/packages/common.pkg/xmake.lua

15 lines
579 B
Lua
Raw Normal View History

2023-04-08 00:56:20 +00:00
-- 添加一个zlib包自动配置选项
option("common")
-- 设置是否在xmake f -h配置菜单中显示
-- 如果你想让你的包在工程项目中,可以提示用户手动禁用,那么就启用他吧
set_showmenu(true)
-- 在xmake f -h中显示相关描述信息
set_description("The common package")
-- 检测 #include 是否能编译通过
add_cxxincludes("BlockingQueue.h")
-- 添加一些检测的头文件目录默认会在common.pkg/include进行搜索当然你也可以指定其他目录
add_includedirs("include")