-
Notifications
You must be signed in to change notification settings - Fork 2
/
SokoGenerator.pro
59 lines (48 loc) · 1.26 KB
/
SokoGenerator.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
53
54
55
56
57
#-------------------------------------------------
#
# Project created by QtCreator 2016-01-31T23:21:44
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = SokoGenerator
TEMPLATE = app
CONFIG += c++11
QMAKE_CFLAGS += -std=c99
SOURCES += main.cpp\
mainwindow.cpp \
sokogenerator.cpp \
solvercpp/allocator.c \
solvercpp/crs.c \
solvercpp/deadlock_table.c \
solvercpp/global.c \
solvercpp/hashtable.c \
solvercpp/level.c \
solvercpp/level_info.c \
solvercpp/move.c \
solvercpp/position.c \
solvercpp/queue.c \
solvercpp/solution.c \
solvercpp/solving_routine.c \
solvercpp/solver.cpp \
difficultyanalyser.cpp \
HEADERS += mainwindow.h \
sokogenerator.h \
solvercpp/allocator.h \
solvercpp/crs.h \
solvercpp/deadlock_table.h \
solvercpp/global.h \
solvercpp/hashtable.h \
solvercpp/level.h \
solvercpp/level_info.h \
solvercpp/move.h \
solvercpp/position.h \
solvercpp/queue.h \
solvercpp/solution.h \
solvercpp/solving_routine.h \
solvercpp/solver.h \
difficultyanalyser.h \
FORMS += mainwindow.ui
win32: RC_ICONS = SokoGenerator.ico
RESOURCES += \
resources.qrc