summaryrefslogblamecommitdiffstats
path: root/src/Mobs/Components/CMakeLists.txt
blob: ce4fd317a65573e8617aaa3da95b838a936a012c (plain) (tree)
1
2
3
4
5
6
7
8




                                                 

                       
                                 





                                
                               
                         

                            


                              
            
                                               
       
cmake_minimum_required (VERSION 2.6)
project (MCServer)

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

SET (SRCS
	AIComponent.cpp
	AIAggressiveComponent.cpp
	AttackComponent.cpp
	EnvironmentComponent.cpp
	MovementComponent.cpp)

SET (HDRS
	AIComponent.h
	AIAggressiveComponent.h
	AttackComponent.h
	BurningComponent.inc
	BurningComponent.h
	EnvironmentComponent.h
	MovementComponent.h)

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