-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsudoku.pro
52 lines (40 loc) · 1.03 KB
/
sudoku.pro
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
48
49
50
51
52
#-------------------------------------------------
#
# Project created by QtCreator 2017-03-17T14:48:43
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = sudoku
TEMPLATE = app
CONFIG += warn_on
CONFIG += c++11
QMAKE_CXXFLAGS += -W -Wall -Wextra -pedantic
INCLUDEPATH += ./include
DEPENDPATH += ./include
MOC_DIR = moc
OBJECTS_DIR = obj
SOURCES += src/main.cpp \
src/controller.cpp \
src/displayer.cpp \
src/model.cpp \
src/playcommand.cpp \
src/sudokuedit.cpp \
src/sudokumainwindow.cpp \
src/level.cpp \
src/difficulty.cpp \
src/scoremanager.cpp
HEADERS += \
include/controller.h \
include/displayer.h \
include/model.h \
include/playcommand.h \
include/sudokuedit.h \
include/sudokumainwindow.h \
include/level.h \
include/difficulty.h \
include/scoremanager.h
FORMS += sudokuwindow.ui
TRANSLATIONS = langs/sudoku_en.ts langs/sudoku_fr.ts
RESOURCES += \
resources/levels.qrc