1
0
cuberite-2a/src/Mobs/CMakeLists.txt
peterbell10 307e7aaff5 Fix switch warnings (#4013)
* Fix switch warnings
  * Fix a variety of -Wswitch and -Wswitch-enum warnings
  * Remove unneeded -Wno-error flags

* Reorganise some eMonsterType switches
  * Alpha sort eMonsterType cases in WriteMobMetadata
    and in cNBTChunkSerializer::AddMonsterEntity
  * List all mob types in protocol 1.12 and NBTChunkSerializer

* cStructGenTrees::GetNumTrees: remove switch default

* cWSSAnvil::LoadOldMinecartFromNBT: Log unhandled minecart type
2017-09-14 09:48:57 +01:00

87 lines
1.1 KiB
CMake

project (Cuberite)
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
Guardian.cpp
Horse.cpp
IronGolem.cpp
MagmaCube.cpp
Monster.cpp
Mooshroom.cpp
Ocelot.cpp
PassiveAggressiveMonster.cpp
PassiveMonster.cpp
Path.cpp
PathFinder.cpp
Pig.cpp
Rabbit.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)
SET (HDRS
AggressiveMonster.h
Bat.h
Blaze.h
CaveSpider.h
Chicken.h
Cow.h
Creeper.h
EnderDragon.h
Enderman.h
Ghast.h
Giant.h
Guardian.h
Horse.h
IncludeAllMonsters.h
IronGolem.h
MagmaCube.h
Monster.h
MonsterTypes.h
Mooshroom.h
Ocelot.h
PassiveAggressiveMonster.h
PassiveMonster.h
Path.h
PathFinder.h
Pig.h
Rabbit.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)
if(NOT MSVC)
add_library(Mobs ${SRCS} ${HDRS})
endif()