-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCubeSolver.pro
More file actions
45 lines (40 loc) · 1.04 KB
/
CubeSolver.pro
File metadata and controls
45 lines (40 loc) · 1.04 KB
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 2015-08-31T01:07:17
#
#-------------------------------------------------
QT += core gui
win32:RC_ICONS += icon.ico
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = CubeSolver
TEMPLATE = app
SOURCES += \
Sources/main.cpp \
Sources/mainwindow.cpp \
Sources/pyra.cpp \
Sources/scrambledialog.cpp \
Sources/scrambledialog2x2.cpp \
Sources/scrambledialogpyra.cpp \
Sources/solver.cpp \
Sources/solver2x2.cpp \
Sources/solverpyra.cpp \
Sources/solversq.cpp \
Sources/sq1.cpp \
Sources/tab2x2.cpp \
Sources/tab3x3.cpp
HEADERS += \
Header/mainwindow.h \
Header/pyra.h \
Header/scrambledialog.h \
Header/scrambledialog2x2.h \
Header/scrambledialogpyra.h \
Header/solver.h \
Header/solver2x2.h \
Header/solverpyra.h \
Header/solversq.h \
Header/sq1.h
FORMS += \
UI/mainwindow.ui \
UI/scrambledialog.ui \
UI/scrambledialog2x2.ui \
UI/scrambledialogpyra.ui