From 2cdb3a60ecbe32fbf606968443d28fcdfbb3911c Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Tue, 5 Jun 2018 14:48:48 +0200 Subject: [PATCH 1/2] Core/CMake: fixed linking servers when tools are disabled --- dep/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/dep/CMakeLists.txt b/dep/CMakeLists.txt index da9527f9c98..73329694828 100644 --- a/dep/CMakeLists.txt +++ b/dep/CMakeLists.txt @@ -14,6 +14,7 @@ if(SERVERS OR TOOLS) add_subdirectory(boost) add_subdirectory(process) add_subdirectory(zlib) + add_subdirectory(bzip2) add_subdirectory(g3dlite) add_subdirectory(recastnavigation) add_subdirectory(jemalloc) From ad3dff69c12246a6fea162b40ca15ecbcd591e6f Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Tue, 5 Jun 2018 14:53:09 +0200 Subject: [PATCH 2/2] Core/Cmake: removed an unneeded include since bzlib is always included by now --- dep/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/dep/CMakeLists.txt b/dep/CMakeLists.txt index 73329694828..fae13924dc2 100644 --- a/dep/CMakeLists.txt +++ b/dep/CMakeLists.txt @@ -35,6 +35,5 @@ if(SERVERS) endif() if(TOOLS) - add_subdirectory(bzip2) add_subdirectory(StormLib) endif()