Spectral/spectral.pro

96 lines
2.9 KiB
Prolog
Raw Normal View History

2018-08-17 07:58:08 +00:00
QT += quick widgets multimedia
2018-02-23 14:39:14 +00:00
CONFIG += c++14
CONFIG += object_parallel_to_source
2018-09-19 23:01:55 +00:00
CONFIG += link_pkgconfig
2018-09-04 06:58:41 +00:00
# Enable this to use QtQuick Compiler.
#CONFIG += qtquickcompiler
2018-02-23 14:39:14 +00:00
TARGET = spectral
2018-08-15 11:00:27 +00:00
2018-09-13 00:22:41 +00:00
packagesExist(QMatrixClient) {
message("Found libQMatrixClient via pkg-config.")
PKGCONFIG += QMatrixClient
} else {
2018-09-22 03:16:19 +00:00
message("Build libQMatrixClient from source.")
2018-09-13 00:22:41 +00:00
include(include/libqmatrixclient/libqmatrixclient.pri)
}
packagesExist(SortFilterProxyModel) {
message("Found qqmlsortfilterproxymodel via pkg-config.")
PKGCONFIG += SortFilterProxyModel
} else {
2018-09-22 03:16:19 +00:00
message("Build qqmlsortfilterproxymodel from source.")
include(include/SortFilterProxyModel/SortFilterProxyModel.pri)
}
2018-02-23 14:39:14 +00:00
# The following define makes your compiler emit warnings if you use
# any feature of Qt which as been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
2018-09-22 04:36:10 +00:00
SOURCES += $$PWD/src/main.cpp \
$$PWD/src/controller.cpp \
$$PWD/src/roomlistmodel.cpp \
$$PWD/src/imageprovider.cpp \
$$PWD/src/messageeventmodel.cpp \
$$PWD/src/emojimodel.cpp \
$$PWD/src/spectralroom.cpp \
$$PWD/src/userlistmodel.cpp \
$$PWD/src/imageitem.cpp \
$$PWD/src/accountlistmodel.cpp \
$$PWD/src/spectraluser.cpp
2018-02-23 14:39:14 +00:00
RESOURCES += \
res.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
2018-02-23 14:39:14 +00:00
# Additional import path used to resolve QML modules just for Qt Quick Designer
QML_DESIGNER_IMPORT_PATH =
# Default rules for deployment.
2018-08-15 11:00:27 +00:00
unix:!mac:isEmpty(PREFIX) {
message("Install PREFIX not set; using /usr/local. You can change this with 'qmake PREFIX=...'")
PREFIX = /usr/local
}
unix:target.path = $$PREFIX/bin
win32:target.path = $$PREFIX
2018-02-23 14:39:14 +00:00
!isEmpty(target.path): INSTALLS += target
unix:!mac {
metainfo.files = $$PWD/org.eu.encom.spectral.appdata.xml
metainfo.path = $$PREFIX/share/metainfo
desktop.files = $$PWD/org.eu.encom.spectral.desktop
desktop.path = $$PREFIX/share/applications
2018-08-26 06:01:08 +00:00
icons.files = $$PWD/icons/hicolor/*
icons.path = $$PREFIX/share/icons/hicolor
INSTALLS += metainfo desktop icons
}
win32 {
RC_ICONS = asset/img/icon.ico
}
mac {
ICON = asset/img/icon.icns
}
2018-02-27 05:10:08 +00:00
HEADERS += \
2018-09-22 04:36:10 +00:00
$$PWD/src/controller.h \
$$PWD/src/roomlistmodel.h \
$$PWD/src/imageprovider.h \
$$PWD/src/messageeventmodel.h \
$$PWD/src/emojimodel.h \
$$PWD/src/spectralroom.h \
$$PWD/src/userlistmodel.h \
$$PWD/src/imageitem.h \
$$PWD/src/accountlistmodel.h \
$$PWD/src/spectraluser.h