summaryrefslogtreecommitdiffstats
path: root/pokemod/pokemod.pro
blob: fcba619109e6441c3ac757a6d493419d87e901c1 (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
TEMPLATE = lib
OBJECTS_DIR = .obj
DESTDIR = ../../bin
LIBS += -L../../bin \
 -lgeneral

CONFIG += qt warn_on dll exceptions debug
CONFIG -= release

QT += xml

INCLUDEPATH += ../general

win32 {
    TARGETDEPS += $${DESTDIR}/general.dll
}else {
    TARGETDEPS += $${DESTDIR}/libgeneral.so
}

SOURCES += Ability.cpp \
 AbilityEffect.cpp \
 Author.cpp \
 Badge.cpp \
 CoinList.cpp \
 CoinListObject.cpp \
 Dialog.cpp \
 EggGroup.cpp \
 Item.cpp \
 ItemEffect.cpp \
 ItemType.cpp \
 Map.cpp \
 MapEffect.cpp \
 MapTrainer.cpp \
 MapTrainerTeamMember.cpp \
 MapWarp.cpp \
 MapWildList.cpp \
 MapWildListEncounter.cpp \
 Move.cpp \
 MoveEffect.cpp \
 Nature.cpp \
 Object.cpp \
 Pokemod.cpp \
 Rules.cpp \
 SpeciesAbility.cpp \
 Species.cpp \
 SpeciesEvolution.cpp \
 SpeciesItem.cpp \
 SpeciesMove.cpp \
 Store.cpp \
 Tile.cpp \
 Time.cpp \
 Trainer.cpp \
 Type.cpp

HEADERS += AbilityEffect.h \
 Ability.h \
 Author.h \
 Badge.h \
 CoinList.h \
 CoinListObject.h \
 Dialog.h \
 EggGroup.h \
 ItemEffect.h \
 Item.h \
 ItemType.h \
 MapEffect.h \
 Map.h \
 MapTrainer.h \
 MapTrainerTeamMember.h \
 MapWarp.h \
 MapWildListEncounter.h \
 MapWildList.h \
 MoveEffect.h \
 Move.h \
 Nature.h \
 Object.h \
 Pokemod.h \
 Rules.h \
 SpeciesAbility.h \
 SpeciesEvolution.h \
 Species.h \
 SpeciesItem.h \
 SpeciesMove.h \
 Store.h \
 Tile.h \
 Time.h \
 Trainer.h \
 Type.h

INSTALLS += target
target.path = /usr/lib`kde4-config --libsuffix`