1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
--!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, TBOOX Open Source Group.
--
-- @author ruki
-- @file find_package.lua
--
-- imports
import("core.base.option")
import("core.project.config")
-- get build info file
function _conan_get_buildinfo_file(name)
return path.absolute(path.join(config.buildir() or os.tmpdir(), ".conan", name, "conanbuildinfo.xmake.lua"))
end
-- get conan platform
function _conan_get_plat(opt)
local plats = {macosx = "Macos", windows = "Windows", mingw = "Windows", linux = "Linux", cross = "Linux", iphoneos = "iOS", android = "Android"}
return plats[opt.plat]
end
-- get conan architecture
function _conan_get_arch(opt)
local archs = {x86_64 = "x86_64",
x64 = "x86_64",
i386 = "x86",
x86 = "x86",
armv7 = "armv7",
["armv7-a"] = "armv7", -- for android, deprecated
["armeabi"] = "armv7", -- for android, removed in ndk r17
["armeabi-v7a"] = "armv7", -- for android
armv7s = "armv7s", -- for iphoneos
arm64 = "armv8", -- for iphoneos
["arm64-v8a"] = "armv8", -- for android
mips = "mips",
mips64 = "mips64"}
return archs[opt.arch]
end
-- get conan mode
function _conan_get_mode(opt)
return opt.mode == "debug" and "Debug" or "Release"
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)
-- get the build info
opt = opt or {}
local buildinfo_file = _conan_get_buildinfo_file(name)
if not os.isfile(buildinfo_file) then
return
end
-- load build info
local buildinfo = io.load(buildinfo_file)
-- get platform, architecture and mode
local plat = _conan_get_plat(opt)
local arch = _conan_get_arch(opt)
local mode = _conan_get_mode(opt)
if not plat or not arch or not mode then
return
end
-- get the package info of the given platform, architecture and mode
local found = false
local result = {}
for k, v in pairs(buildinfo[plat .. "_" .. arch .. "_" .. mode]) do
if not k:startswith("__") then
if #table.wrap(v) > 0 then
result[k] = v
found = true
end
end
end
if found then
local libfiles = {}
for _, linkdir in ipairs(result.linkdirs) do
if not os.isdir(linkdir) then
return
end
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
end
end
|