diff options
author | archshift <admin@archshift.com> | 2014-07-18 09:03:19 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-07-19 02:41:43 +0200 |
commit | 15aacc24a5e4adfb00cc0bf10703c83a60a0735b (patch) | |
tree | b0a1ba3b8c20165ff7c22d10391b1c062ffc0ded | |
parent | Blocks/CMakeLists.txt: Replaced glob with list of files (diff) | |
download | cuberite-15aacc24a5e4adfb00cc0bf10703c83a60a0735b.tar cuberite-15aacc24a5e4adfb00cc0bf10703c83a60a0735b.tar.gz cuberite-15aacc24a5e4adfb00cc0bf10703c83a60a0735b.tar.bz2 cuberite-15aacc24a5e4adfb00cc0bf10703c83a60a0735b.tar.lz cuberite-15aacc24a5e4adfb00cc0bf10703c83a60a0735b.tar.xz cuberite-15aacc24a5e4adfb00cc0bf10703c83a60a0735b.tar.zst cuberite-15aacc24a5e4adfb00cc0bf10703c83a60a0735b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/CMakeLists.txt | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/src/Protocol/CMakeLists.txt b/src/Protocol/CMakeLists.txt index 849ec27ca..21d49c516 100644 --- a/src/Protocol/CMakeLists.txt +++ b/src/Protocol/CMakeLists.txt @@ -4,9 +4,27 @@ project (MCServer) include_directories ("${PROJECT_SOURCE_DIR}/../") -file(GLOB SOURCE - "*.cpp" - "*.h" -) +SET (SRCS + Authenticator.cpp + ChunkDataSerializer.cpp + Protocol125.cpp + Protocol132.cpp + Protocol14x.cpp + Protocol15x.cpp + Protocol16x.cpp + Protocol17x.cpp + ProtocolRecognizer.cpp) -add_library(Protocol ${SOURCE}) +SET (HDRS + Authenticator.h + ChunkDataSerializer.h + Protocol.h + Protocol125.h + Protocol132.h + Protocol14x.h + Protocol15x.h + Protocol16x.h + Protocol17x.h + ProtocolRecognizer.h) + +add_library(Protocol ${SRCS} ${HDRS}) |