forked from reactive-systems/bosy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
34 lines (32 loc) · 1.84 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
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "BoSy",
products: [
.executable(name: "BoSy", targets: ["BoSy"]),
.executable(name: "BoSyHyper", targets: ["BoSyHyper"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-package-manager.git", from: "0.1.0"),
.package(url: "https://github.com/ltentrup/CAiger.git", from: "0.1.0"),
.package(url: "https://github.com/ltentrup/SafetySynth.git", from: "0.3.0"),
.package(url: "https://github.com/ltentrup/CUDD.git", from: "0.2.0"),
],
targets: [
.target(name: "BoSy", dependencies: ["Automata", "LTL", "Logic", "Utils", "TransitionSystem", "Specification", "BoundedSynthesis"]),
.target(name: "BoundedSynthesis", dependencies: ["Automata", "LTL", "Logic", "Utils", "TransitionSystem", "Specification", "SafetyGameSolver", "CUDD"]),
.testTarget(name: "BoundedSynthesisTests", dependencies: ["BoundedSynthesis"]),
.target(name: "TransitionSystem", dependencies: ["Logic", "Utils", "Specification", "SafetySynth"]),
.target(name: "Automata", dependencies: ["Logic", "Utils", "Utility"]),
.testTarget(name: "AutomataTests", dependencies: ["Automata"]),
.target(name: "Specification", dependencies: ["Logic", "Utils", "Utility"]),
.target(name: "Logic", dependencies: ["Utils", "CAiger", "CUDD", "Utility"]),
.testTarget(name: "LogicTests", dependencies: ["Logic"]),
.target(name: "LTL"),
.testTarget(name: "LTLTests", dependencies: ["LTL"]),
.target(name: "Utils"),
.testTarget(name: "UtilsTests", dependencies: ["Utils"]),
// BoSyHyper
.target(name: "BoSyHyper", dependencies: ["Utility", "Automata", "LTL", "Logic", "Utils", "TransitionSystem", "Specification", "BoundedSynthesis"]),
]
)