diff options
author | archshift <admin@archshift.com> | 2014-07-18 09:05:50 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-07-19 02:41:43 +0200 |
commit | 5890d04f212e83bdc2e2305e006e6091471802fc (patch) | |
tree | 1987a04181dd726cce90ae261f90b41054664eca /src/UI/CMakeLists.txt | |
parent | Protocol/CMakeLists.txt: Replaced glob with list of files (diff) | |
download | cuberite-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 |
Diffstat (limited to 'src/UI/CMakeLists.txt')
-rw-r--r-- | src/UI/CMakeLists.txt | 14 |
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}) |