From 742bd1dcd3285dc9c12974dbddf267691073458f Mon Sep 17 00:00:00 2001 From: Luffbee Date: Wed, 16 Oct 2024 12:45:05 +0800 Subject: [PATCH] fix configs desc --- packages/v/vladimirshaleev-ipaddress/xmake.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/v/vladimirshaleev-ipaddress/xmake.lua b/packages/v/vladimirshaleev-ipaddress/xmake.lua index e0144cd20bd..3375ef2ef4f 100644 --- a/packages/v/vladimirshaleev-ipaddress/xmake.lua +++ b/packages/v/vladimirshaleev-ipaddress/xmake.lua @@ -9,9 +9,9 @@ package("vladimirshaleev-ipaddress") add_versions("v1.1.0", "e5084d83ebd712210882eb6dac14ed1b9b71584dede523b35c6181e0a06375f1") - add_configs("exceptions", {description = "Disable handling cpp exception for", default = true, type = "boolean"}) - add_configs("overload_std", {description = "Do not overload std functions such as to_string, hash etc", default = true, type = "boolean"}) - add_configs("ipv6_scope", {description = "Disable scope id for IPv6 addresses", default = true, type = "boolean"}) + add_configs("exceptions", {description = "Support handling cpp exception", default = true, type = "boolean"}) + add_configs("overload_std", {description = "Overload std functions such as to_string, hash etc", default = true, type = "boolean"}) + add_configs("ipv6_scope", {description = "Support scope id for IPv6 addresses", default = true, type = "boolean"}) add_configs("ipv6_scope_max_length", {description = "Maximum scope-id length for IPv6 addresses", default = 16, type = "number"}) add_deps("cmake")