summaryrefslogtreecommitdiffstats
path: root/src/UI/CMakeLists.txt
blob: c4112331831ed75a43a27a23806a5be907f92ef5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

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
	WindowOwner.h)

add_library(UI ${SRCS} ${HDRS})