aboutsummaryrefslogtreecommitdiffstats
path: root/heimdall-frontend/heimdall-frontend.pro
blob: 7e1049b89bb79d8959f49cc528438f85779d2bdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# ----------------------------------------------------
# This file is generated by the Qt Visual Studio Add-in.
# ------------------------------------------------------

TEMPLATE = app
TARGET = heimdall-frontend

macx {
	DESTDIR = ../OSX
} else win32 {	# It's recommended that Windows users compile via VS2010, but just in case...
	DESTDIR = ../Win32
} else {
	DESTDIR = ../Linux
}

macx {
	PROPOSEDINSTALLDIR = /Applications
} else {
	PROPOSEDINSTALLDIR = /usr/local/bin
}

message("Install location:" $$PROPOSEDINSTALLDIR)
DESIREDINSTALLDIR = $$prompt("Press ENTER to use the default location or type an alternative")

equals(DESIREDINSTALLDIR, "") {
	target.path = $$PROPOSEDINSTALLDIR
} else {
	target.path = $$DESIREDINSTALLDIR
}


INSTALLS += target

QT += core gui
CONFIG += release
DEFINES += QT_LARGEFILE_SUPPORT
INCLUDEPATH += ./GeneratedFiles \
    ./GeneratedFiles/Release \
    .
DEPENDPATH += .
MOC_DIR += ./GeneratedFiles/release
OBJECTS_DIR += release
UI_DIR += ./GeneratedFiles
RCC_DIR += ./GeneratedFiles
include(heimdall-frontend.pri)