-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcompat.boost-utility.lua
More file actions
60 lines (58 loc) · 2.5 KB
/
Copy pathcompat.boost-utility.lua
File metadata and controls
60 lines (58 loc) · 2.5 KB
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
-- Form B inline descriptor for Boost.Utility 1.92.0 — result_of, compressed_pair, call_traits, in_place factories.
-- Part of the modular-boost header family; see compat.boost-config for the
-- family wiring and version-train policy. Header closure verified by grepping
-- every `<boost/...>` include across the include tree (both `#include` and
-- `# include` spellings) and cross-checked against this repo's CMakeLists
-- INTERFACE line:
-- utility -> assert, config, core, io, preprocessor, throw_exception, type_traits
-- Header-only, traditional `#include` consumption; no CN mirror yet; BSL-1.0.
package = {
spec = "1",
namespace = "compat",
name = "boost-utility",
description = "Boost.Utility 1.92.0 — result_of, compressed_pair, call_traits, in_place factories",
licenses = {"BSL-1.0"},
repo = "https://github.com/boostorg/utility",
type = "package",
xpm = {
linux = {
["1.92.0"] = {
url = "https://github.com/boostorg/utility/archive/refs/tags/boost-1.92.0.tar.gz",
sha256 = "41ef0d92840b0db9249f20ac17bbe1eca0ec1f35dd5261920a255475820b7c19",
},
},
macosx = {
["1.92.0"] = {
url = "https://github.com/boostorg/utility/archive/refs/tags/boost-1.92.0.tar.gz",
sha256 = "41ef0d92840b0db9249f20ac17bbe1eca0ec1f35dd5261920a255475820b7c19",
},
},
windows = {
["1.92.0"] = {
url = "https://github.com/boostorg/utility/archive/refs/tags/boost-1.92.0.tar.gz",
sha256 = "41ef0d92840b0db9249f20ac17bbe1eca0ec1f35dd5261920a255475820b7c19",
},
},
},
mcpp = {
language = "c++20",
import_std = false,
include_dirs = { "*/include" },
generated_files = {
["mcpp_generated/boost_utility_anchor.cpp"] = [==[
int mcpp_compat_boost_utility_anchor(void) { return 0; }
]==],
},
sources = { "mcpp_generated/boost_utility_anchor.cpp" },
targets = { ["boost_utility"] = { kind = "lib" } },
deps = {
["compat.boost-assert"] = "1.92.0",
["compat.boost-config"] = "1.92.0",
["compat.boost-core"] = "1.92.0",
["compat.boost-io"] = "1.92.0",
["compat.boost-preprocessor"] = "1.92.0",
["compat.boost-throw-exception"] = "1.92.0",
["compat.boost-type-traits"] = "1.92.0",
},
},
}