Skip to content
Snippets Groups Projects
Commit 2c877d0b authored by Thorsten Wißmann's avatar Thorsten Wißmann
Browse files

Add . to the include search path

Look for headers in . as well, just to make sure it works for those
having minisat-includes saved in the project directory.
parent 9ac7ad2d
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ PROGS := coalg coalgcompare
LIBS := unix str
SOURCESMLI := $(wildcard *.mli)
SOURCESML := $(wildcard *.ml)
INCS ?= -I/usr/include -I/usr/lib/ocaml
INCS ?= -I/usr/include -I/usr/lib/ocaml -I.
CXXFLAGS += -Wall -Werror $(INCS)
LDXX ?= g++
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment