summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-07-18 09:05:50 +0200
committerarchshift <admin@archshift.com>2014-07-19 02:41:43 +0200
commit5890d04f212e83bdc2e2305e006e6091471802fc (patch)
tree1987a04181dd726cce90ae261f90b41054664eca
parentProtocol/CMakeLists.txt: Replaced glob with list of files (diff)
downloadcuberite-5890d04f212e83bdc2e2305e006e6091471802fc.tar
cuberite-5890d04f212e83bdc2e2305e006e6091471802fc.tar.gz
cuberite-5890d04f212e83bdc2e2305e006e6091471802fc.tar.bz2
cuberite-5890d04f212e83bdc2e2305e006e6091471802fc.tar.lz
cuberite-5890d04f212e83bdc2e2305e006e6091471802fc.tar.xz
cuberite-5890d04f212e83bdc2e2305e006e6091471802fc.tar.zst
cuberite-5890d04f212e83bdc2e2305e006e6091471802fc.zip
-rw-r--r--src/UI/CMakeLists.txt14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/UI/CMakeLists.txt b/src/UI/CMakeLists.txt
index 5b5b8cc18..c41123318 100644
--- a/src/UI/CMakeLists.txt
+++ b/src/UI/CMakeLists.txt
@@ -4,9 +4,13 @@ project (MCServer)
include_directories ("${PROJECT_SOURCE_DIR}/../")
-file(GLOB SOURCE
- "*.cpp"
- "*.h"
-)
+SET (SRCS
+ SlotArea.cpp
+ Window.cpp)
-add_library(UI ${SOURCE})
+SET (HDRS
+ SlotArea.h
+ Window.h
+ WindowOwner.h)
+
+add_library(UI ${SRCS} ${HDRS})