Hi,

I've added this snippet to my project's .pro file.
Now when I build in Qt Creator, the compile output always displays "Building with release support." no matter if I'm building release or debug.
I've checked my project settings in Qt Creator. Only the release build specifies "CONFIG+=release"

Does anyone know what I'm doing wrong?


Qt Code:
  1. CONFIG(release) {
  2. message(Building with release support.)
  3. LIBS += -lColorPicker-2.6
  4. } else {
  5. message(Building with debug support.)
  6. LIBS += -lColorPicker-2.6d
  7. }
To copy to clipboard, switch view to plain text mode