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:
LD := /usr/bin/g++
LDFLAGS := -Wl,-E
LIBS := -lpylonbase
$(NAME) : $(NAME).o
$(LD) $(LDFLAGS) -o $@ $^ $(LIBS) -lGCBase_gcc40_v2_1
LD := /usr/bin/g++
LDFLAGS := -Wl,-E
LIBS := -lpylonbase
$(NAME) : $(NAME).o
$(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 ...."
Bookmarks