projects
/
zefram
/
minetest
/
minetest_engine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1cc40c0
)
Copy zlib and freetype dll to windows package too
author
sapier
<Sapier at GMX dot net>
Sun, 29 Jun 2014 17:36:51 +0000
(19:36 +0200)
committer
sapier
<Sapier at GMX dot net>
Sun, 29 Jun 2014 17:36:51 +0000
(19:36 +0200)
src/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/src/CMakeLists.txt
b/src/CMakeLists.txt
index 464070c24d287796754db5b1a4c4476b65a7360c..611824ec10b930ab35ac2cd586068023da64a073 100644
(file)
--- 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)