summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Behaviors/CMakeLists.txt
blob: 3e0a063d1b04db2faa16a39a0d194c9a086ecede (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

cmake_minimum_required (VERSION 2.6)
project (Cuberite)

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

SET (SRCS
    BehaviorAggressive.cpp
    BehaviorChaser.cpp
    BehaviorBreeder.cpp
    BehaviorDayLightBurner.cpp
    BehaviorCoward.cpp
    BehaviorItemDropper.cpp
    BehaviorItemFollower.cpp
    BehaviorStriker.cpp
    BehaviorWanderer.cpp
)

SET (HDRS
    BehaviorAggressive.h
    BehaviorChaser.h
    BehaviorBreeder.h
    BehaviorDayLightBurner.h
    BehaviorCoward.h
    BehaviorItemDropper.h
    BehaviorItemFollower.h
    BehaviorStriker.h
    BehaviorWanderer.h
)

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