blob: 99d87ce88c19b9f8a35c818dc2524a549d7f681c (
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
34
35
36
37
|
project (Cuberite)
include_directories ("${PROJECT_SOURCE_DIR}/../")
set (SRCS
IncrementalRedstoneSimulator.cpp
)
set (HDRS
CommandBlockHandler.h
DoorHandler.h
DropSpenserHandler.h
IncrementalRedstoneSimulator.h
RedstoneHandler.h
RedstoneSimulatorChunkData.h
SolidBlockHandler.h
RedstoneComparatorHandler.h
RedstoneRepeaterHandler.h
RedstoneBlockHandler.h
RedstoneTorchHandler.h
RedstoneWireHandler.h
RedstoneLampHandler.h
RedstoneToggleHandler.h
PistonHandler.h
SmallGateHandler.h
NoteBlockHandler.h
TNTHandler.h
TrappedChestHandler.h
TripwireHookHandler.h
PoweredRailHandler.h
PressurePlateHandler.h
)
if(NOT MSVC)
add_library(IncrementalRedstoneSimulator ${SRCS} ${HDRS})
endif()
|