1
0
Fork 0
cuberite-2a/src/Mobs/CMakeLists.txt

89 lines
1.1 KiB
CMake
Raw Normal View History

2013-12-10 21:39:20 +00:00
SET (SRCS
AggressiveMonster.cpp
Bat.cpp
Blaze.cpp
CaveSpider.cpp
Chicken.cpp
Cow.cpp
Creeper.cpp
EnderDragon.cpp
Enderman.cpp
Ghast.cpp
Giant.cpp
2014-12-18 18:30:32 +00:00
Guardian.cpp
Horse.cpp
IronGolem.cpp
MagmaCube.cpp
Monster.cpp
Mooshroom.cpp
2017-07-12 10:42:02 +00:00
Ocelot.cpp
PassiveAggressiveMonster.cpp
PassiveMonster.cpp
2015-04-29 16:24:14 +00:00
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
2020-04-04 11:44:17 +00:00
WitherSkeleton.cpp
Wolf.cpp
Zombie.cpp
2018-02-03 11:24:19 +00:00
ZombiePigman.cpp
ZombieVillager.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
2014-12-18 18:30:32 +00:00
Guardian.h
Horse.h
IncludeAllMonsters.h
IronGolem.h
MagmaCube.h
Monster.h
2014-10-05 20:09:19 +00:00
MonsterTypes.h
Mooshroom.h
Ocelot.h
PassiveAggressiveMonster.h
PassiveMonster.h
2015-04-29 16:24:14 +00:00
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
2020-04-04 11:44:17 +00:00
WitherSkeleton.h
Wolf.h
Zombie.h
2018-02-03 11:24:19 +00:00
ZombiePigman.h
ZombieVillager.h)
2013-12-10 23:07:30 +00:00
if(NOT MSVC)
add_library(Mobs ${SRCS} ${HDRS})
target_link_libraries(Mobs fmt::fmt SQLiteCpp)
endif()