Remove CPLEX and Gurobi from dependencies

This commit is contained in:
2020-08-29 13:47:27 -05:00
parent ebc0b70441
commit 9efc5f254b
10 changed files with 356 additions and 60 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
JULIA := julia --color=yes
JULIA_SYSIMAGE_ARGS := $(JULIA_ARGS) --sysimage build/sysimage.so
all: test
build/sysimage.so: Manifest.toml Project.toml
mkdir -p build
$(JULIA) --project=test test/sysimage.jl
test: build/sysimage.so
$(JULIA) --sysimage build/sysimage.so --project=test test/runtests.jl
.PHONY: test test-python test-julia test-watch docs install