From: sapier Date: Sun, 29 Jun 2014 17:36:51 +0000 (+0200) Subject: Copy zlib and freetype dll to windows package too X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=c39992e42928623f8ee357b001bc87af9faa9286;p=zefram%2Fminetest%2Fminetest_engine.git Copy zlib and freetype dll to windows package too --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 464070c2..611824ec 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -689,6 +689,12 @@ if(WIN32) if(CURL_DLL) install(FILES ${CURL_DLL} DESTINATION ${BINDIR}) endif() + if (ZLIB_DLL) + install(FILES ${ZLIB_DLL} DESTINATION ${BINDIR}) + endif() + if(FREETYPE_DLL) + install(FILES ${FREETYPE_DLL} DESTINATION ${BINDIR}) + endif() endif() if(BUILD_CLIENT)