forked from RBrNx/SokoGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSokoSolverPlugin.pro
59 lines (49 loc) · 1.31 KB
/
SokoSolverPlugin.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
58
59
#-------------------------------------------------
#
# Project created by QtCreator 2016-04-03T16:57:49
#
#-------------------------------------------------
#QT -= gui
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = SokoSolverPlugin
TEMPLATE = lib
CONFIG += c++11
QMAKE_CFLAGS += -std=c99
QMAKE_LFLAGS += -Wl,--kill-at -static -static-libgcc -static-libstdc++ -lpthread
DEFINES += SOKOSOLVERPLUGIN_LIBRARY
SOURCES += sokosolverplugin.cpp \
solvercpp/solver.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
HEADERS += sokobanpluginsdll.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/solver.h \
solvercpp/solving_routine.h
unix {
target.path = /usr/lib
INSTALLS += target
}
win32: RC_ICONS = SokoGenerator.ico
RESOURCES += \
resources.qrc