I\'m having some issues adding header libraries.
I right click on my project, and click Properties-> C/C++ General-> Paths and Symbols.
In
Solved by adding -I to makefile.
BOOST = C:/Users/neo/Documents/boost_1_52 CXXFLAGS = -O2 -g -Wall -fmessage-length=0 -I$(BOOST) OBJS = p1.o LIBS = TARGET = p1.exe $(TARGET): $(OBJS) $(CXX) -o $(TARGET) $(OBJS) $(LIBS) all: $(TARGET) clean: rm -f $(OBJS) $(TARGET)