diff options
| author | ruki <[email protected]> | 2022-07-27 22:32:59 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-07-27 22:32:59 +0800 |
| commit | f7d9c1714f894fa04077cebbe7299eaa9b8070bf (patch) | |
| tree | 83ca3154aa9021759f49812de976ef560977b62f | |
| parent | 21823652b9c8a7fece9a00c0b8659c8a19b1c00f (diff) | |
fix showmenu
| -rw-r--r-- | xmake/core/project/option.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/core/project/option.lua b/xmake/core/project/option.lua index 531f295db..f5df5ce45 100644 --- a/xmake/core/project/option.lua +++ b/xmake/core/project/option.lua @@ -497,7 +497,8 @@ function _instance:showmenu() self:get("cfuncs") or self:get("cxxfuncs") or self:get("cincludes") or self:get("cxxincludes") or self:get("links") or self:get("syslinks") or - self:get("csnippets") or self:get("cxxsnippets") then + self:get("csnippets") or self:get("cxxsnippets") or + self:get("features") then showmenu = false end end |
