-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSudokuComplex.pro
More file actions
47 lines (42 loc) · 933 Bytes
/
Copy pathSudokuComplex.pro
File metadata and controls
47 lines (42 loc) · 933 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
46
47
#-------------------------------------------------
#
# Project created by QtCreator 2013-04-17T12:16:42
#
#-------------------------------------------------
QT += core gui
QT += widgets
TARGET = SudokuComplex
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
BoardDelegate.cpp \
BoardModel.cpp \
Cell.cpp \
SudokuClass.cpp \
RandomSudokuGenerator.cpp \
SudokuStructure.cpp \
HelperClass.cpp \
numberpick.cpp \
resultsdialog.cpp \
newdialog.cpp \
about.cpp \
sudokusettings.cpp
HEADERS += mainwindow.h \
BoardDelegate.h \
BoardModel.h \
Cell.h \
SudokuClass.h \
RandomSudokuGenerator.h \
SudokuStructure.h \
Types.h \
HelperClass.h \
numberpick.h \
resultsdialog.h \
newdialog.h \
about.h \
sudokusettings.h
FORMS += mainwindow.ui \
numberpick.ui \
resultsdialog.ui \
newdialog.ui \
about.ui