package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
3.6 KiB
100 lines
3.6 KiB
2 months ago
|
add_rules("mode.debug", "mode.release")
|
||
|
|
||
|
add_requires("libiconv")
|
||
|
|
||
|
-- add options
|
||
|
option("symbologies", {description = "Select symbologies to compile"})
|
||
|
option("vers", {description = "Set the version"})
|
||
|
option("LIB_VERSION", {description = "Set the library version"})
|
||
|
|
||
|
set_version("$(vers)")
|
||
|
|
||
|
if has_config("LIB_VERSION") then
|
||
|
local lib_vers = get_config("LIB_VERSION")
|
||
|
|
||
|
local cur = lib_vers:match("([^:]+)")
|
||
|
local age = lib_vers:match(".*:(.*)$")
|
||
|
local major = tonumber(cur) - tonumber(age)
|
||
|
local minor = tonumber(age)
|
||
|
local revision = lib_vers:match("^[^:]*:([^:]*):.*$")
|
||
|
|
||
|
set_configvar("LIB_VERSION_MAJOR", major, {quote = false})
|
||
|
set_configvar("LIB_VERSION_MINOR", minor, {quote = false})
|
||
|
set_configvar("LIB_VERSION_REVISION", revision, {quote = false})
|
||
|
end
|
||
|
|
||
|
set_configvar("PACKAGE", "zbar")
|
||
|
set_configvar("PACKAGE_NAME", "zbar")
|
||
|
set_configvar("PACKAGE_TARNAME", "zbar")
|
||
|
set_configvar("PACKAGE_BUGREPORT", "mchehab+huawei@kernel.org")
|
||
|
set_configvar("PACKAGE_URL", "")
|
||
|
|
||
|
includes("@builtin/check")
|
||
|
|
||
|
-- config.h variables
|
||
|
configvar_check_cincludes("HAVE_SYS_TIME_H", "sys/time.h")
|
||
|
configvar_check_cincludes("HAVE_INTTYPES_H", "inttypes.h")
|
||
|
|
||
|
target("zbar")
|
||
|
set_kind("$(kind)")
|
||
|
|
||
|
if is_plat("linux", "bsd") then
|
||
|
add_syslinks("pthread")
|
||
|
end
|
||
|
|
||
|
add_packages("libiconv")
|
||
|
|
||
|
add_includedirs("include")
|
||
|
add_includedirs("zbar")
|
||
|
|
||
|
add_headerfiles("include/zbar.h")
|
||
|
add_headerfiles("include/zbar/Scanner.h", "include/zbar/Decoder.h",
|
||
|
"include/zbar/Exception.h", "include/zbar/Symbol.h", "include/zbar/Image.h",
|
||
|
"include/zbar/ImageScanner.h", "include/zbar/Video.h", "include/zbar/Window.h",
|
||
|
"include/zbar/Processor.h", {prefixdir = "zbar"})
|
||
|
|
||
|
set_configdir("include")
|
||
|
add_configfiles("include/(config.h.in)", {filename = "config.h"})
|
||
|
|
||
|
add_files(
|
||
|
"zbar/config.c",
|
||
|
"zbar/error.c",
|
||
|
"zbar/symbol.c",
|
||
|
"zbar/image.c",
|
||
|
"zbar/convert.c",
|
||
|
"zbar/refcnt.c",
|
||
|
"zbar/window.c",
|
||
|
"zbar/video.c",
|
||
|
"zbar/img_scanner.c",
|
||
|
"zbar/scanner.c",
|
||
|
"zbar/decoder.c",
|
||
|
"zbar/misc.c",
|
||
|
"zbar/sqcode.c")
|
||
|
|
||
|
local symbologies = {{name = "ean", files = {"zbar/decoder/ean.c"}},
|
||
|
{name = "databar", files = {"zbar/decoder/databar.c"}},
|
||
|
{name = "code128", files = {"zbar/decoder/code128.c"}},
|
||
|
{name = "code93", files = {"zbar/decoder/code93.c"}},
|
||
|
{name = "code39", files = {"zbar/decoder/code39.c"}},
|
||
|
{name = "codabar", files = {"zbar/decoder/codabar.c"}},
|
||
|
{name = "i25", files = {"zbar/decoder/i25.c"}},
|
||
|
{name = "qrcode", files = {"zbar/decoder/qr_finder.c", "zbar/qrcode/*.c"}},
|
||
|
{name = "sqcode", files = {"zbar/decoder/sq_finder.c"}},
|
||
|
{name = "pdf417", files = {"zbar/decoder/pdf417.c"}}}
|
||
|
local enabled_symbologies = get_config("symbologies")
|
||
|
if enabled_symbologies then
|
||
|
for _, symbology in ipairs(symbologies) do
|
||
|
if enabled_symbologies:find(symbology.name) or enabled_symbologies:find("all") then
|
||
|
add_files(symbology.files)
|
||
|
set_configvar("ENABLE_" .. symbology.name:upper(), 1)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
-- "null" implementation for window module and video module
|
||
|
add_files("zbar/window/null.c", "zbar/video/null.c", "zbar/processor/null.c")
|
||
|
|
||
|
if is_plat("windows", "mingw") then
|
||
|
add_files("zbar/libzbar.rc")
|
||
|
end
|