Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
blegat committed Jun 15, 2017
1 parent 73ffc0d commit 16b6512
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@ function glpkvalidate(name, handle)
ver = VersionNumber(ver_str)
glpkminver <= ver <= glpkmaxver
end
depends = []
@static if is_windows()
gmpdep = library_dependency("libgmp", aliases = ["libgmp-10", "libgmp10"])
depends = [gmpdep]
else
depends = []
push!(depends, gmpdep)
end
glpkdep = library_dependency("libglpk", aliases = ["libglpk-40"], # it is called libglpk-40 on the glpk-devel WinRPM package
validate = glpkvalidate, depends=depends)
depends = depends, validate = glpkvalidate)

# Build from sources (used by Linux, BSD)
julia_usrdir = normpath("$JULIA_HOME/../") # This is a stopgap, we need a better builtin solution to get the included libraries
Expand Down

0 comments on commit 16b6512

Please sign in to comment.