forked from jump-dev/JuMP.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.jl
28 lines (26 loc) · 766 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
using Documenter, JuMP
makedocs(
format = :html,
sitename = "JuMP",
authors = "Miles Lubin, Iain Dunning, and Joey Huchette",
analytics = "UA-44252521-1",
pages = [
"Introduction" => "index.md",
"Installation Guide" => "installation.md",
"Quick Start Guide" => "quickstart.md",
"Models" => "refmodel.md",
"Variables" => "refvariable.md",
"Expressions and Constraints" => "refexpr.md",
"Problem Modification" => "probmod.md",
"Solver Callbacks" => "callbacks.md",
"Nonlinear Modeling" => "nlp.md"
]
)
deploydocs(
repo = "github.com/JuliaOpt/JuMP.jl.git",
target = "build",
osname = "linux",
julia = "0.6",
deps = nothing,
make = nothing
)