GUI: Build to similar folders than cli in Windows.

This makes it easier to handle build files and manage installer.
This commit is contained in:
Kimmo Varis 2010-02-27 19:23:54 +02:00
parent 50210857a6
commit 58ea4f35f4
1 changed files with 13 additions and 3 deletions

View File

@ -1,14 +1,24 @@
TEMPLATE = app
TARGET =
TARGET = gui
QT += xml
CONFIG += warn_on
DEPENDPATH += .
INCLUDEPATH += .
DESTDIR = .
RCC_DIR = temp
MOC_DIR = temp
OBJECTS_DIR = temp
UI_DIR = temp
CONFIG += warn_on
DEFINES += NDEBUG
win32 {
DESTDIR = ..\Build\gui
RCC_DIR = ..\BuildTmp\gui
MOC_DIR = ..\BuildTmp\gui
OBJECTS_DIR = ..\BuildTmp\gui
UI_DIR = ..\BuildTmp\gui
}
RESOURCES = gui.qrc
FORMS = main.ui \
resultsview.ui \