summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSfan5 <sfan5@live.de>2014-01-21 13:35:26 +0100
committerSfan5 <sfan5@live.de>2014-01-21 13:35:26 +0100
commit3875a77bf88f0876a1c56852d59c4832d908d711 (patch)
tree59b69a8da5f3c30f9c3cf2479054e5a5b9ff96b5 /src
parent4585e855a7fe63f4b820d7551a39ac9825b4cb1d (diff)
downloadminetest-3875a77bf88f0876a1c56852d59c4832d908d711.tar.gz
minetest-3875a77bf88f0876a1c56852d59c4832d908d711.tar.bz2
minetest-3875a77bf88f0876a1c56852d59c4832d908d711.zip
Fix curl dll not getting installed when sound is disabled
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 26f8b6e29..f0b98f44b 100644
--- 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()