summaryrefslogblamecommitdiffstats
path: root/src/Simulator/IncrementalRedstoneSimulator/CMakeLists.txt
blob: 15da35db052bb27de25bb51b39ce3dfa7c4dfd03 (plain) (tree)
1
                  

































                                                                 
                                                                    

       
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})
	target_link_libraries(IncrementalRedstoneSimulator fmt::fmt)
endif()