From d9b0c85dafd794dd106a68272ccb6417df4954d0 Mon Sep 17 00:00:00 2001 From: Joel Bethke Date: Sat, 21 Jan 2017 20:01:48 -0600 Subject: [PATCH] cmake: Enable COPY_DEPENDENCIES by default on Windows When setting up a build for the first time on windows, makes it so you no longer have to run cmake twice: once to build, then once again with the COPY_DEPENDENCIES box to ensure dependencies are copied. Closes jp9000/obs-studio#768 --- cmake/Modules/CopyMSVCBins.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Modules/CopyMSVCBins.cmake b/cmake/Modules/CopyMSVCBins.cmake index 00e1416a9..13ce4ea0e 100644 --- a/cmake/Modules/CopyMSVCBins.cmake +++ b/cmake/Modules/CopyMSVCBins.cmake @@ -8,7 +8,7 @@ if(COPIED_DEPENDENCIES) return() endif() -option(COPY_DEPENDENCIES "Automaticaly try copying all dependencies" OFF) +option(COPY_DEPENDENCIES "Automaticaly try copying all dependencies" ON) if(NOT COPY_DEPENDENCIES) return() endif()