-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOneTimePass.pro
More file actions
33 lines (24 loc) · 836 Bytes
/
OneTimePass.pro
File metadata and controls
33 lines (24 loc) · 836 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
#-------------------------------------------------
#
# Project created by QtCreator 2017-04-29T19:00:08
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = OneTimePass
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
otpwidget.cpp \
adddialog.cpp
HEADERS += mainwindow.h \
otpwidget.h \
adddialog.h
FORMS += mainwindow.ui \
otpwidget.ui \
adddialog.ui
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../../../../usr/lib/release/ -loath
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../../../../usr/lib/debug/ -loath
else:unix: LIBS += -L$$PWD/../../../../../usr/lib/ -loath
INCLUDEPATH += $$PWD/../../../../../usr/include/liboath
DEPENDPATH += $$PWD/../../../../../usr/include/liboath