forked from nemomobile/qmlgallery
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqmlgallery.pro
36 lines (28 loc) · 928 Bytes
/
qmlgallery.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
PROJECT_NAME = qmlgallery
QT += declarative opengl
# qml API we provide
qml_api.files = qml/api/*
qml_api.path = $$[QT_INSTALL_IMPORTS]/org/nemomobile/$$PROJECT_NAME
INSTALLS += qml_api
target.path = $$INSTALL_ROOT/usr/bin
INSTALLS += target
desktop.files = $${PROJECT_NAME}.desktop
desktop.path = $$INSTALL_ROOT/usr/share/applications
INSTALLS += desktop
RESOURCES += res.qrc
HEADERS += src/gallery.h
SOURCES += src/main.cpp \
src/gallery.cpp
# do not edit below here
TEMPLATE = app
CONFIG -= app_bundle
TARGET = $$PROJECT_NAME
CONFIG += link_pkgconfig
PKGCONFIG += libresourceqt1
packagesExist(qdeclarative-boostable) {
message("Building with qdeclarative-boostable support")
DEFINES += HAS_BOOSTER
PKGCONFIG += qdeclarative-boostable
} else {
warning("qdeclarative-boostable not available; startup times will be slow er")
}