I want to add a object files in pro file like this:
LIBS += ../../bin/*.o
but that also add main.o file. I try remove that:
LIBS -= ../../bin/main.o
but it don’t work. How to do that correctly?
↧