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:
4585e85
)
Fix curl dll not getting installed when sound is disabled
author
Sfan5
<sfan5@live.de>
Tue, 21 Jan 2014 12:35:26 +0000
(13:35 +0100)
committer
Sfan5
<sfan5@live.de>
Tue, 21 Jan 2014 12:35:26 +0000
(13:35 +0100)
src/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/src/CMakeLists.txt
b/src/CMakeLists.txt
index 26f8b6e293269a8f21c664265d9012188014db54..f0b98f44bd8d356736493b23c125b3a5fc433f6e 100644
(file)
--- a/
src/CMakeLists.txt
+++ b/
src/CMakeLists.txt
@@
-600,9
+600,9
@@
if(WIN32)
if(VORBISFILE_DLL)
install(FILES ${VORBISFILE_DLL} DESTINATION ${BINDIR})
endif()
-
if(CURL_DLL
)
-
install(FILES ${CURL_DLL} DESTINATION ${BINDIR}
)
-
endif(
)
+
endif(
)
+
if(CURL_DLL
)
+
install(FILES ${CURL_DLL} DESTINATION ${BINDIR}
)
endif()
endif()