~aacid/qtubuntu/remove_unused_signal

« back to all changes in this revision

Viewing changes to src/ubuntuappmenu/ubuntuappmenu.pro

  • Committer: Bileto Bot
  • Date: 2017-01-16 06:39:32 UTC
  • mfrom: (360.2.4 qtubuntu)
  • Revision ID: ci-train-bot@canonical.com-20170116063932-70jenqyqw3jplt3q
Resync trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
TARGET = ubuntuappmenu
 
2
TEMPLATE = lib
 
3
 
 
4
QT -= gui
 
5
QT += core-private platformsupport-private dbus
 
6
 
 
7
CONFIG += plugin no_keywords
 
8
 
 
9
# CONFIG += c++11 # only enables C++0x
 
10
QMAKE_CXXFLAGS += -fvisibility=hidden -fvisibility-inlines-hidden -std=c++11 -Werror -Wall
 
11
QMAKE_LFLAGS += -std=c++11 -Wl,-no-undefined
 
12
 
 
13
CONFIG += link_pkgconfig
 
14
PKGCONFIG += gio-2.0
 
15
 
 
16
DBUS_INTERFACES += com.ubuntu.MenuRegistrar.xml
 
17
 
 
18
HEADERS += \
 
19
    theme.h \
 
20
    gmenumodelexporter.h \
 
21
    gmenumodelplatformmenu.h \
 
22
    logging.h \
 
23
    menuregistrar.h \
 
24
    registry.h \
 
25
    themeplugin.h
 
26
 
 
27
SOURCES += \
 
28
    theme.cpp \
 
29
    gmenumodelexporter.cpp \
 
30
    gmenumodelplatformmenu.cpp \
 
31
    menuregistrar.cpp \
 
32
    registry.cpp \
 
33
    themeplugin.cpp
 
34
 
 
35
OTHER_FILES += \
 
36
    ubuntuappmenu.json
 
37
 
 
38
# Installation path
 
39
target.path +=  $$[QT_INSTALL_PLUGINS]/platformthemes
 
40
 
 
41
INSTALLS += target