-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqsrun.pro
More file actions
42 lines (33 loc) · 883 Bytes
/
qsrun.pro
File metadata and controls
42 lines (33 loc) · 883 Bytes
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
#-------------------------------------------------
#
# Project created by QtCreator 2011-11-09T03:59:23
#
#-------------------------------------------------
QT += core gui dbus script network
# comment this out to get output on cli
DEFINES += QT_NO_DEBUG_OUTPUT
TARGET = qsrun
TEMPLATE = app
SOURCES += src/main.cpp\
src/runbar.cpp \
src/apphinter.cpp \
src/googleconv.cpp \
src/calculator.cpp \
src/dbussingleinstance.cpp \
src/settings.cpp \
src/folderwatch.cpp
HEADERS += src/runbar.h \
src/apphinter.h \
src/googleconv.h \
src/calculator.h \
src/dbussingleinstance.h \
src/settings.h \
src/folderwatch.h
RESOURCES += \
icons.qrc
MY_BUILD_DIR = $$PWD/build
DESTDIR = $$MY_BUILD_DIR
MOC_DIR = $$MY_BUILD_DIR/moc/
OBJECTS_DIR = $$MY_BUILD_DIR/obj/
RCC_DIR = $$MY_BUILD_DIR/rcc/
UI_DIR = $$MY_BUILD_DIR/ui/