From 0a96bf1c034672785ad7d36a3cf5618af9d8d10a Mon Sep 17 00:00:00 2001 From: Tycho Bickerstaff Date: Thu, 19 Dec 2013 00:11:04 +0000 Subject: [PATCH] moved protocol to glob --- src/Protocol/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Protocol/CMakeLists.txt b/src/Protocol/CMakeLists.txt index 53dc295c0..107b79627 100644 --- a/src/Protocol/CMakeLists.txt +++ b/src/Protocol/CMakeLists.txt @@ -4,4 +4,8 @@ project (MCServer) include_directories ("${PROJECT_SOURCE_DIR}/../") -add_library(Protocol ProtocolRecognizer) +file(GLOB SOURCE + "*.cpp" +) + +add_library(Protocol ${SOURCE})