From 3875a77bf88f0876a1c56852d59c4832d908d711 Mon Sep 17 00:00:00 2001 From: Sfan5 Date: Tue, 21 Jan 2014 13:35:26 +0100 Subject: [PATCH] Fix curl dll not getting installed when sound is disabled --- src/CMakeLists.txt | 6 +++--- 1 file 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()