2013-12-18 14:10:47 -05:00
|
|
|
|
|
|
|
cmake_minimum_required (VERSION 2.6)
|
|
|
|
project (MCServer)
|
|
|
|
|
|
|
|
include_directories ("${PROJECT_SOURCE_DIR}/../")
|
|
|
|
|
2014-07-18 03:05:50 -04:00
|
|
|
SET (SRCS
|
|
|
|
SlotArea.cpp
|
2015-03-10 14:40:53 -04:00
|
|
|
Window.cpp
|
|
|
|
AnvilWindow.cpp
|
|
|
|
BeaconWindow.cpp
|
|
|
|
ChestWindow.cpp
|
|
|
|
CraftingWindow.cpp
|
|
|
|
DropSpenserWindow.cpp
|
|
|
|
EnchantingWindow.cpp
|
|
|
|
EnderChestWindow.cpp
|
|
|
|
FurnaceWindow.cpp
|
|
|
|
HopperWindow.cpp
|
|
|
|
InventoryWindow.cpp)
|
2013-12-18 14:10:47 -05:00
|
|
|
|
2014-07-18 03:05:50 -04:00
|
|
|
SET (HDRS
|
|
|
|
SlotArea.h
|
|
|
|
Window.h
|
2014-12-13 09:06:55 -05:00
|
|
|
AnvilWindow.h
|
|
|
|
BeaconWindow.h
|
|
|
|
ChestWindow.h
|
|
|
|
CraftingWindow.h
|
|
|
|
DropSpenserWindow.h
|
|
|
|
EnchantingWindow.h
|
|
|
|
EnderChestWindow.h
|
|
|
|
FurnaceWindow.h
|
|
|
|
HopperWindow.h
|
|
|
|
InventoryWindow.h
|
|
|
|
MinecartWithChestWindow.h
|
2014-07-18 03:05:50 -04:00
|
|
|
WindowOwner.h)
|
|
|
|
|
2014-07-18 16:26:43 -04:00
|
|
|
if(NOT MSVC)
|
|
|
|
add_library(UI ${SRCS} ${HDRS})
|
|
|
|
endif()
|