Skip to content

Commit

Permalink
GUI: Build to similar folders than cli in Windows.
Browse files Browse the repository at this point in the history
This makes it easier to handle build files and manage installer.
  • Loading branch information
kimmov committed Feb 27, 2010
1 parent 5021085 commit 58ea4f3
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions gui/gui.pro
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down

0 comments on commit 58ea4f3

Please sign in to comment.