summaryrefslogblamecommitdiffstats
path: root/src/Mobs/Components/CMakeLists.txt
blob: 0c6a96c07a51fc880741c9288462c394fbe74e51 (plain) (tree)
1
2
3
4
5




                                                 











                                
            
                                               
      
cmake_minimum_required (VERSION 2.6)
project (MCServer)

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

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

SET (HDRS
	AIComponent.h
	AttackComponent.h
	EnvironmentComponent.h
	MovementComponent.h)

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