-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInterrogator.pro
More file actions
45 lines (34 loc) · 891 Bytes
/
Interrogator.pro
File metadata and controls
45 lines (34 loc) · 891 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
42
43
44
45
#-------------------------------------------------
#
# Project created by QtCreator 2016-11-27T15:09:08
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Interrogator
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
wordprocessor.cpp \
achivementdialog.cpp
HEADERS += mainwindow.h \
wordprocessor.h \
achivementdialog.h
FORMS += mainwindow.ui \
achivementdialog.ui
CONFIG += c++11
CONFIG += static
DISTFILES += \
Images/100.png \
Images/500.png \
Images/1000.png
Release:DESTDIR = release
Release:OBJECTS_DIR = release/.obj
Release:MOC_DIR = release/.moc
Release:RCC_DIR = release/.rcc
Release:UI_DIR = release/.ui
Debug:DESTDIR = debug
Debug:OBJECTS_DIR = debug/.obj
Debug:MOC_DIR = debug/.moc
Debug:RCC_DIR = debug/.rcc
Debug:UI_DIR = debug/.ui