Open Kanzll opened 6 years ago
This make file works for me fine.
`CXX = g++ -Wall -std=c++0x
pkg-config --cflags opencv
CXXFLAGS = pkg-config --cflags --libs opencv
TARGET = test_slic SOURCE = $(TARGET).cpp slic.cpp
TARGET: $(CXX) -o $(TARGET) $(SOURCE) $(CXXFLAGS)
.PHONY: clean clean: rm -f .o ~ $(TARGET)`
Hi, I have this error when I tryed to compile the code
Thank you.