PDA

View Full Version : .pro - 2



mickey
25th September 2006, 19:39
hi,
I'm trying to compile a simple project :


TEMPLATE = app
CONFIG += qt warn_on
TARGET +=
DESTDIR = .
DEPENDPATH += .
INCLUDEPATH += .

# Input
SOURCES += main.cpp

why .exe isn't put in AppDir and it's put inside /release??? (I set DESTDIR = .)
and is there a way to avoid the creation of /debug and /release directory?
Thanks to all

jacek
25th September 2006, 19:59
is there a way to avoid the creation of /debug and /release directory?
Just add:
CONFIG -= debug_and_release
CONFIG += release