--!A cross-platform build utility based on Lua -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- Copyright (C) 2015-present, Xmake Open Source Community. -- -- @author ruki -- @file find_package.lua -- -- imports import("core.base.option") import("core.project.config") import("package.manager.conan.configurations") -- get build info file function _conan_get_buildinfo_file(name, dep_name) local filename = "conanbuildinfo.xmake.lua" if dep_name then filename = "conanbuildinfo_" .. dep_name .. ".xmake.lua" end return path.absolute(path.join(config.builddir() or os.tmpdir(), ".conan", name, filename)) end -- get info key function _conan_get_infokey(opt) opt = opt or {} local plat = configurations.plat(opt.plat) local arch = configurations.arch(opt.arch) local mode = configurations.build_type(opt.mode) if plat and arch and mode then return plat .. "_" .. arch .. "_" .. mode end end -- get build info function _conan_get_buildinfo(name, opt) opt = opt or {} local buildinfo_file = _conan_get_buildinfo_file(name, opt.dep_name) if not os.isfile(buildinfo_file) then return end -- load build info local infokey = _conan_get_infokey(opt) if not infokey then return end local buildinfo = io.load(buildinfo_file) if buildinfo then buildinfo = buildinfo[infokey] end -- get the package info of the given platform, architecture and mode local found = false local result = {} local dep_names for k, v in pairs(buildinfo) do if not k:startswith("__") then if #table.wrap(v) > 0 then result[k] = v found = true end end end -- remove unused frameworks for linux -- @see https://github.com/xmake-io/xmake/issues/5358 local plat = opt.plat if found and result and plat ~= "macosx" and plat ~= "iphoneos" then result.frameworks = nil result.frameworkdirs = nil end if found then return buildinfo, result end end -- find conan library function _conan_find_library(name, opt) opt = opt or {} local buildinfo, result = _conan_get_buildinfo(name, opt) if result then local libfiles = {} for _, linkdir in ipairs(result.linkdirs) do for _, file in ipairs(os.files(path.join(linkdir, "*"))) do if file:endswith(".lib") or file:endswith(".a") then result.static = true table.insert(libfiles, file) elseif file:endswith(".so") or file:match(".+%.so%..+$") or file:endswith(".dylib") or file:endswith(".dll") then -- maybe symlink to libxxx.so.1 result.shared = true table.insert(libfiles, file) end end end if opt.plat == "windows" or opt.plat == "mingw" then for _, bindir in ipairs(buildinfo.__bindirs) do for _, file in ipairs(os.files(path.join(bindir, "*.dll"))) do result.shared = true table.insert(libfiles, file) end end end for _, includedir in ipairs(result.includedirs) do if not os.isdir(includedir) then return end end local require_version = opt.require_version if require_version ~= nil and require_version ~= "latest" then result.version = opt.require_version end result.libfiles = table.unique(libfiles) return result, buildinfo.__dep_names end end -- find package using the conan package manager -- -- @param name the package name -- @param opt the options, e.g. {verbose = true) -- function main(name, opt) local result, dep_names = _conan_find_library(name, opt) if result and dep_names then for _, dep_name in ipairs(dep_names) do local depinfo = _conan_find_library(name, table.join(opt, {dep_name = dep_name})) for k, v in pairs(depinfo) do result[k] = table.join(result[k] or {}, v) end end for k, v in pairs(result) do if k == "links" or k == "syslinks" or k == "frameworks" then result[k] = table.unwrap(table.reverse_unique(v)) else result[k] = table.unwrap(table.unique(v)) end end end return result end