-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimer.pro
More file actions
32 lines (22 loc) · 757 Bytes
/
Copy pathtimer.pro
File metadata and controls
32 lines (22 loc) · 757 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
#-------------------------------------------------
#
# Project created by QtCreator 2015-04-02T12:04:31
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = timer
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
timer.cpp
HEADERS += mainwindow.h \
timer.h
FORMS += mainwindow.ui
RESOURCES += \
play.qrc
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../qtspeech/lib/release/ -lQt5TextToSpeech
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../qtspeech/lib/debug/ -lQt5TextToSpeech
else:unix: LIBS += -L$$PWD/../qtspeech/lib/ -lQt5TextToSpeech
INCLUDEPATH += $$PWD/../qtspeech/include
DEPENDPATH += $$PWD/../qtspeech/include