UI/CMakeLists.txt: Replaced glob with list of files
This commit is contained in:
parent
15aacc24a5
commit
5890d04f21
@ -4,9 +4,13 @@ project (MCServer)
|
|||||||
|
|
||||||
include_directories ("${PROJECT_SOURCE_DIR}/../")
|
include_directories ("${PROJECT_SOURCE_DIR}/../")
|
||||||
|
|
||||||
file(GLOB SOURCE
|
SET (SRCS
|
||||||
"*.cpp"
|
SlotArea.cpp
|
||||||
"*.h"
|
Window.cpp)
|
||||||
)
|
|
||||||
|
|
||||||
add_library(UI ${SOURCE})
|
SET (HDRS
|
||||||
|
SlotArea.h
|
||||||
|
Window.h
|
||||||
|
WindowOwner.h)
|
||||||
|
|
||||||
|
add_library(UI ${SRCS} ${HDRS})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user