-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
73 lines (71 loc) · 2.11 KB
/
Package.swift
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
// swift-tools-version: 5.7
import PackageDescription
let package = Package(
name: "swift-vdf",
platforms: [
.macOS(.v10_14)
],
products: [
.library(
name: "VDF",
targets: ["VDF"]),
],
targets: [
.binaryTarget(
name: "gmp",
path: "Sources/gmp.xcframework"),
.target(
name: "chiavdf",
dependencies: [],
path: "Sources/chiavdf/src",
exclude: [
"1weso_test.cpp",
"2weso_test.cpp",
"avx512_test.cpp",
"compile_asm.cpp",
"prover_test.cpp",
"vdf_bench.cpp",
"vdf_client.cpp",
"vdf_test.cpp",
"verifier_test.cpp",
"cmake",
"CMakeLists.txt",
"Makefile.vdf-client",
"refcode/README.md",
"uint128_t/LICENSE",
"uint128_t/uint128_t_config.include",
"uint128_t/uint128_t.build",
"uint128_t/uint128_t.include",
"uint128_t/README.md",
"python_bindings",
"lib/gmp-patch-6.2.1", // figure out how to apply patch
"lib/pybind11"
],
publicHeadersPath: "./",
cxxSettings: [
.headerSearchPath("lib/uint128_t"),
.headerSearchPath("../../gmp"),
.define("VDF_MODE", to: "0"),
.define("FAST_MACHINE", to: "1"),
.define("CHIAOSX", to: "1")
]),
.target(
name: "ObjCVDF",
dependencies: [
"chiavdf",
"gmp"
],
path: "Sources/ObjCVDF",
cxxSettings: [
.headerSearchPath("../chiavdf/src"),
.headerSearchPath("../gmp")
]),
.target(
name: "VDF",
dependencies: ["ObjCVDF"]),
.testTarget(
name: "VDFTests",
dependencies: ["VDF"])
],
cxxLanguageStandard: .cxx17
)