summaryrefslogblamecommitdiffstats
path: root/src/UI/CMakeLists.txt
blob: 059abad05e8646eb0ea140e6fa6267c0c50f46ab (plain) (tree)
1
2
3
4
5
6
7
8
9





                                                 


                    
 


                  










                                 

                      


                                       

cmake_minimum_required (VERSION 2.6)
project (MCServer)

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

SET (SRCS
	SlotArea.cpp
	Window.cpp)

SET (HDRS
	SlotArea.h
	Window.h
	AnvilWindow.h
	BeaconWindow.h
	ChestWindow.h
	CraftingWindow.h
	DropSpenserWindow.h
	EnchantingWindow.h
	EnderChestWindow.h
	FurnaceWindow.h
	HopperWindow.h
	InventoryWindow.h
	MinecartWithChestWindow.h
	WindowOwner.h)

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