summaryrefslogblamecommitdiffstats
path: root/src/Mobs/Behaviors/CMakeLists.txt
blob: 75f0490a068a2dc74d9505b77387b2ac55913584 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                                 
                
                          

                        
                       
                         



                              
                            
                             

                                     
                        


                                     


         
              
                        

                      
                     
                       



                            
                          
                           

                                   
                      


                                   




                                              

cmake_minimum_required (VERSION 2.6)
project (Cuberite)

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

SET (SRCS
    Behavior.cpp
    BehaviorAggressive.cpp
    BehaviorAttacker.cpp
    BehaviorBrave.cpp
    BehaviorBreeder.cpp
    BehaviorDoNothing.cpp
    BehaviorDayLightBurner.cpp
    BehaviorCoward.cpp
    BehaviorItemDropper.cpp
    BehaviorItemFollower.cpp
    BehaviorItemReplacer.cpp
    BehaviorAttackerMelee.cpp
    BehaviorAttackerRanged.cpp
    BehaviorAttackerSuicideBomber.cpp
    BehaviorWanderer.cpp
    BehaviorPet.cpp
    BehaviorPetTamableWithItem.cpp
    BehaviorPetTamableWithItemShy.cpp
)

SET (HDRS
    Behavior.h
    BehaviorAggressive.h
    BehaviorAttacker.h
    BehaviorBrave.h
    BehaviorBreeder.h
    BehaviorDoNothing.h
    BehaviorDayLightBurner.h
    BehaviorCoward.h
    BehaviorItemDropper.h
    BehaviorItemFollower.h
    BehaviorItemReplacer.h
    BehaviorAttackerMelee.h
    BehaviorAttackerRanged.h
    BehaviorAttackerSuicideBomber.h
    BehaviorWanderer.h
    BehaviorPet.h
    BehaviorPetTamableWithItem.h
    BehaviorPetTamableWithItemShy.h
)

if(NOT MSVC)
	add_library(Behaviors ${SRCS} ${HDRS})
endif()