Hello all, thanks for your replies and sorry for my delay
.
I finally did it work, but don't remember how. What is for sure is that I re-configured the .pro file adding the debug_and_release option, and configured it to put the resulting apps into diffrent dirs with the following code:
CONFIG(release, debug|release){
DESTDIR = release/
TARGET = designer }
else {
DESTDIR = debug/
TARGET = dbgDesigner
}
CONFIG(release, debug|release){
DESTDIR = release/
TARGET = designer }
else {
DESTDIR = debug/
TARGET = dbgDesigner
}
To copy to clipboard, switch view to plain text mode
Also I copied the translations/ directory to debug and release folders to avoid doubtsa bout problems loading files, or different versions of translations. I also changed the line that john_god details above. I guess all that did the trick
Bookmarks