I have a third party Makefile,which I want to incorporate in QT.
I don' t know how to set the settings.
Here are the important makefile settings that i need to use:
Qt Code:
  1. LD := /usr/bin/g++
  2. LDFLAGS := -Wl,-E
  3. LIBS := -lpylonbase
  4.  
  5. $(NAME) : $(NAME).o
  6. $(LD) $(LDFLAGS) -o $@ $^ $(LIBS) -lGCBase_gcc40_v2_1
To copy to clipboard, switch view to plain text mode 

How do i set these settings in QT GUI application project settings??
Without these I am getting some linker errors like "undefined reference to ...."