summaryrefslogtreecommitdiffstats
path: root/src/Mobs/CMakeLists.txt
blob: 1cb01443e7024407f64e35bcc98349a27757b9db (plain) (blame)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137

cmake_minimum_required (VERSION 2.6)
project (MCServer)

include_directories ("${PROJECT_SOURCE_DIR}/../")

SET (SRCS
	AggressiveMonster.cpp
	Bat.cpp
	Blaze.cpp
	CaveSpider.cpp
	Chicken.cpp
	Cow.cpp
	Creeper.cpp
	EnderDragon.cpp
	Enderman.cpp
	Ghast.cpp
	Giant.cpp
	Horse.cpp
	IronGolem.cpp
	MagmaCube.cpp
	Monster.cpp
	NewMonster.cpp
	Mooshroom.cpp
	PassiveAggressiveMonster.cpp
	PassiveMonster.cpp
	Pig.cpp
	Sheep.cpp
	Skeleton.cpp
	Slime.cpp
	SnowGolem.cpp
	Spider.cpp
	Squid.cpp
	Villager.cpp
	Witch.cpp
	Wither.cpp
	Wolf.cpp
	Zombie.cpp
	ZombiePigman.cpp
	NewBat.cpp
	NewBlaze.cpp
	NewCaveSpider.cpp
	NewChicken.cpp
	NewCow.cpp
	NewCreeper.cpp
	NewEnderDragon.cpp
	NewEnderman.cpp
	NewGhast.cpp
	NewGiant.cpp
	NewHorse.cpp
	NewIronGolem.cpp
	NewMagmaCube.cpp
	NewMooshroom.cpp
	NewPig.cpp
	NewSheep.cpp
	NewSkeleton.cpp
	NewSlime.cpp
	NewSnowGolem.cpp
	NewSpider.cpp
	NewSquid.cpp
	NewVillager.cpp
	NewWitch.cpp
	NewWither.cpp
	NewWolf.cpp
	NewZombie.cpp
	NewZombiePigman.cpp)
	
SET (HDRS
	AggressiveMonster.h
	Bat.h
	Blaze.h
	CaveSpider.h
	Chicken.h
	Cow.h
	Creeper.h
	EnderDragon.h
	Enderman.h
	Ghast.h
	Giant.h
	Horse.h
	IncludeAllMonsters.h
	IronGolem.h
	MagmaCube.h
	Monster.h
	NewMonster.h
	Mooshroom.h
	Ocelot.h
	PassiveAggressiveMonster.h
	PassiveMonster.h
	Pig.h
	Sheep.h
	Silverfish.h
	Skeleton.h
	Slime.h
	SnowGolem.h
	Spider.h
	Squid.h
	Villager.h
	Witch.h
	Wither.h
	Wolf.h
	Zombie.h
	ZombiePigman.h
	NewBat.h
	NewBlaze.h
	NewCaveSpider.h
	NewChicken.h
	NewCow.h
	NewCreeper.h
	NewEnderDragon.h
	NewEnderman.h
	NewGhast.h
	NewGiant.h
	NewHorse.h
	NewIronGolem.h
	NewMagmaCube.h
	NewMooshroom.h
	NewOcelot.h
	NewPig.h
	NewSheep.h
	NewSilverfish.h
	NewSkeleton.h
	NewSlime.h
	NewSnowGolem.h
	NewSpider.h
	NewSquid.h
	NewVillager.h
	NewWitch.h
	NewWither.h
	NewWolf.h
	NewZombie.h
	NewZombiePigman.h)

if(NOT MSVC)
	add_library(Mobs ${SRCS} ${HDRS})
endif()
add_subdirectory(Components)