-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroovy.pro
63 lines (50 loc) · 1.62 KB
/
groovy.pro
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
######################################################################
# Automatically generated by qmake (2.01a) Wed Jul 28 20:37:44 2010
######################################################################
TEMPLATE = app
QT += network gui declarative
CONFIG += mobility
MOBILITY += multimedia
TARGET =
DEPENDPATH += .
INCLUDEPATH += .
if (exists($$PWD/../libgroove) & exists($$PWD/../qjson)) {
INCLUDEPATH = $$PWD/../libgroove/include
unix:!symbian:maemo5 {
message("Hidious workaround! The maemo5 toolchain does something wrong with -L/-l.")
LIBS += $$OUT_PWD/../libgroove/src/libgroove.so $$OUT_PWD/../qjson/lib/libqjson.so
} else: LIBS += -L$$OUT_PWD/../libgroove/src -lgroove -L$$OUT_PWD/../qjson/lib -lqjson
} else {
CONFIG += link_pkgconfig
PKGCONFIG += groove QJson
}
# Input
SOURCES += main.cpp \
playerbackend.cpp \
qtcachingnetworkaccessmanagerfactory.cpp
HEADERS += \
playerbackend.h \
qtcachingnetworkaccessmanagerfactory.h
UI_MAIN = mainwindow.qml
UI_GROOVY_UI = \
groovy-ui/GrooveSongListDelegate.qml \
groovy-ui/GrooveSearchBar.qml \
groovy-ui/GrooveButton.qml \
groovy-ui/SearchPage.qml \
groovy-ui/SongViewPage.qml \
groovy-ui/PageStack.qml \
groovy-ui/PageStack.js \
groovy-ui/NowPlayingPage.qml
unix:!symbian {
maemo5 {
target.path = /opt/usr/bin
} else {
target.path = /usr/local/bin
}
qmlmain.files = $$UI_MAIN
qmlmain.path = /home/developer
qmlui.files = $$UI_GROOVY_UI
qmlui.path = /home/developer/groovy-ui
INSTALLS += target qmlmain qmlui
}
OTHER_FILES += $$UI_MAIN $$UI_GROOVY_UI-UI