blob: 059abad05e8646eb0ea140e6fa6267c0c50f46ab (
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
|
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()
|