Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Doekin committed Oct 19, 2024
1 parent b41b4ff commit d6604fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/z/zbar/port/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ add_requires("libiconv")

-- add options
option("symbologies")
-- set_default({"ean","databar","code128","code93","code39","codabar","i25","qrcode","sqcode"})
set_description("Select symbologies to compile")
option_end()

Expand All @@ -13,6 +12,8 @@ option("vers")
set_showmenu(true)
option_end()
if has_config("vers") then
set_version(get_config("vers"))

set_configvar("VERSION", get_config("vers"))
set_configvar("PACKAGE_VERSION", get_config("vers"))
set_configvar("PACKAGE_STRING", "zbar " .. get_config("vers"))
Expand Down
2 changes: 1 addition & 1 deletion packages/z/zbar/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ package("zbar")
add_extsources("brew::zbar")
end

add_configs("symbologies", {description = "Select symbologies to compile", default = {"ean","databar","code128","code93","code39","codabar","i25","qrcode","sqcode"}, type = "table"})
add_configs("symbologies", {description = "Select symbologies to compile", default = {"ean", "databar", "code128", "code93", "code39", "codabar", "i25", "qrcode", "sqcode"}, type = "table"})

if is_plat("linux", "bsd") then
add_syslinks("pthread")
Expand Down

0 comments on commit d6604fb

Please sign in to comment.