-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmake.jl
29 lines (26 loc) · 965 Bytes
/
make.jl
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
ENV["GKSwstype"] = "100" # set 'GR environment' to 'no output' (for Travis CI)
using Documenter, Reachability
DocMeta.setdocmeta!(Reachability, :DocTestSetup, :(using Reachability); recursive=true)
makedocs(
sitename = "Reachability.jl",
modules = [Reachability],
format = Documenter.HTML(
prettyurls = get(ENV, "CI", nothing) == "true",
assets = ["assets/juliareach.css"]),
pages = [
"Home" => "index.md",
"Library" => Any[
"User interface" => "lib/interface.md",
"Systems" => "lib/systems.md",
"Algorithms" => "lib/algorithms.md",
"Transformations" => "lib/transformations.md",
"Discretization" => "lib/discretize.md",
"Distributed computations" => "lib/distributed.md"],
"Publications" => "publications.md",
"Citations" => "citations.md",
"About" => "about.md"
]
)
deploydocs(
repo = "github.com/JuliaReach/Reachability.jl.git"
)