1
0
Fork 0

UI/CMakeLists.txt: Replaced glob with list of files

This commit is contained in:
archshift 2014-07-18 00:05:50 -07:00
parent 15aacc24a5
commit 5890d04f21
1 changed files with 9 additions and 5 deletions

View File

@ -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})