blob: 5784c76c3133b72025b77ca8825fa102b27efadd (
plain)
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
|
#===========================================
# Copyright (c) 2017, q5sys (JT)
# Available under the MIT license
# See the LICENSE file for full details
#===========================================
include("$${PWD}/../../OS-detect.pri")
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = lumina-xdg-entry
TEMPLATE = app
target.path = $${L_BINDIR}
DEFINES += QT_DEPRECATED_WARNINGS
SOURCES += main.cpp\
mainwindow.cpp
HEADERS += mainwindow.h
FORMS += mainwindow.ui
desktop.files=lumina-xdg-entry.desktop
desktop.path=$${L_SHAREDIR}/applications/
INSTALLS += target desktop
|