I am trying to include the path to extra libraries in my makefile, but I can't figure out how to get the compiler to use that path. So far I have:
g++ -g -Wall testing.cpp fileparameters.cpp main.cpp -o test
and I want to include the path to
/data[...]/lib
because testing.cpp
includes files from that library. Also, I'm on a Linux machine.
EDIT: Not a path to a library. Just to header files from that library that were included. My bad.