Parent: [97bf8d] (diff)

Child: [7d4e19] (diff)

Download this file

upplay.pro    99 lines (87 with data), 3.0 kB

 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
TEMPLATE = app
LANGUAGE = C++
QT += webkit network
# VERSION is ^egrepped and must stay in the first column
VERSION = 0.1.2
QMAKE_CXXFLAGS += -std=c++0x -DUPPLAY_VERSION=\\\"$$VERSION\\\"
CONFIG += qt warn_on thread release debug
RESOURCES += GUI/upplay.qrc
HEADERS += \
GUI/ContextMenu.h \
GUI/player/GUI_Player.h \
GUI/player/GUI_TrayIcon.h \
GUI/player/SearchSlider.h \
GUI/playlist/GUI_Playlist.h \
GUI/playlist/delegate/PlaylistItemDelegate.h \
GUI/playlist/delegate/PlaylistItemDelegateInterface.h \
GUI/playlist/entry/GUI_PlaylistEntry.h \
GUI/playlist/entry/GUI_PlaylistEntryBig.h \
GUI/playlist/entry/GUI_PlaylistEntrySmall.h \
GUI/playlist/model/PlaylistItemModel.h \
GUI/playlist/view/PlaylistView.h \
GUI/renderchoose/renderchoose.h \
HelperStructs/CSettingsStorage.h \
HelperStructs/Helper.h \
HelperStructs/PlaylistMode.h \
HelperStructs/Style.h \
application.h \
dirbrowser/cdbrowser.h \
dirbrowser/rreaper.h \
playlist/Playlist.h \
playlist/PlaylistAVT.h \
playlist/PlaylistOH.h \
upadapt/avtadapt.h \
upadapt/ohpladapt.h \
upqo/avtransport_qo.h \
upqo/cdirectory_qo.h \
upqo/ohplaylist_qo.h \
upqo/renderingcontrol_qo.h
SOURCES += \
GUI/ContextMenu.cpp \
GUI/player/GUI_Player.cpp \
GUI/player/GUI_PlayerConnections.cpp \
GUI/player/GUI_PlayerControls.cpp \
GUI/player/GUI_PlayerCover.cpp \
GUI/player/GUI_PlayerMenubar.cpp \
GUI/player/GUI_TrayIcon.cpp \
GUI/player/SearchSlider.cpp \
GUI/playlist/GUI_Playlist.cpp \
GUI/playlist/delegate/PlaylistItemDelegate.cpp \
GUI/playlist/entry/GUI_PlaylistEntryBig.cpp \
GUI/playlist/entry/GUI_PlaylistEntrySmall.cpp \
GUI/playlist/model/PlaylistItemModel.cpp \
GUI/playlist/view/PlaylistView.cpp \
HelperStructs/CSettingsStorage.cpp \
HelperStructs/Helper.cpp \
HelperStructs/Style.cpp \
application.cpp \
dirbrowser/cdbrowser.cpp \
playlist/Playlist.cpp \
playlist/PlaylistAVT.cpp \
playlist/PlaylistOH.cpp \
upadapt/upputils.cpp \
upplay.cpp
FORMS = \
GUI/player/GUI_Player.ui \
GUI/playlist/GUI_Playlist.ui \
GUI/playlist/entry/GUI_PlaylistEntryBig.ui \
GUI/playlist/entry/GUI_PlaylistEntrySmall.ui \
GUI/renderchoose/renderchoose.ui
unix {
UI_DIR = .ui
MOC_DIR = .moc
OBJECTS_DIR = .obj
LIBS += -lupnpp
isEmpty(PREFIX) {
PREFIX = /usr
}
message("Prefix is $$PREFIX")
DEFINES += PREFIX=\\\"$$PREFIX\\\"
# Installation stuff
target.path = "$$PREFIX/bin"
data.files = dirbrowser/cdbrowser.css
data.path = $$PREFIX/share/upplay/cdbrowser
desktop.files += upplay.desktop
desktop.path = /usr/share/applications/
INSTALLS += target data desktop
}