From 8a5d1018f2f7f0411a91c0ce1e12c5f3564d9d74 Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 8 Sep 2022 00:52:02 +0800 Subject: update comments --- xmake/core/project/policy.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xmake/core/project/policy.lua b/xmake/core/project/policy.lua index c58b60cbb..c0c713598 100644 --- a/xmake/core/project/policy.lua +++ b/xmake/core/project/policy.lua @@ -71,11 +71,11 @@ function policy.policies() ["package.include_external_headers"] = {description = "Use includes as external headers.", type = "boolean"}, -- inherit the configs from the external command arguments, e.g. toolchains, `xmake f --toolchain=` ["package.inherit_external_configs"] = {description = "Inherit the configs from the external command arguments.", default = true, type = "boolean"}, - -- set strict compatibility for package and it's all child packages + -- set strict compatibility for package and it's all child packages. we can just set it in package(). -- if true, then any updates to this package, such as buildhash changes due to version changes, -- will force all installed child packages to be recompiled and installed, @see https://github.com/xmake-io/xmake/issues/2719 ["package.strict_compatibility"] = {description = "Set strict compatibility for package and it's all child packages.", type = "boolean"}, - -- set strict compatibility for package and it's all library dependencies + -- set strict compatibility for package and it's all library dependencies. we can set it in package() and user project configuration. -- if true, then any updates to library dependencies, such as buildhash changes due to version changes, -- will force the installed packages to be recompiled and installed. @see https://github.com/xmake-io/xmake/issues/2719 ["package.librarydeps.strict_compatibility"] = {description = "Set strict compatibility for package and it's all library dependencies.", type = "boolean"} -- cgit v1.3.1