From 6e330311e9b9b74988737de001e39dbd75b32ccf Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Sun, 2 Dec 2018 19:46:24 +0700 Subject: [PATCH] Fix PostBuildEvent for 64bit build of mupen64plus. --- projects/msvc/GLideN64.vcxproj | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/projects/msvc/GLideN64.vcxproj b/projects/msvc/GLideN64.vcxproj index e11ad3c7..4daf237d 100644 --- a/projects/msvc/GLideN64.vcxproj +++ b/projects/msvc/GLideN64.vcxproj @@ -185,8 +185,10 @@ copy /Y "$(OutDir)$(TargetName).*" "$(N64PluginsDir)" ) Copy result to plugins folder - if NOT "$(Mupen64PluginsDir)" == "" (if not exist "$(Mupen64PluginsDir)" mkdir "$(Mupen64PluginsDir)" + if NOT "$(Mupen64PluginsDir)" == "" (if not exist "$(Mupen64PluginsDir)" mkdir "$(Mupen64PluginsDir)" copy /Y "$(OutDir)$(TargetName).*" "$(Mupen64PluginsDir)") + if NOT "$(Mupen64PluginsDir_x64)" == "" (if not exist "$(Mupen64PluginsDir_x64)" mkdir "$(Mupen64PluginsDir_x64)" +copy /Y "$(OutDir)$(TargetName).*" "$(Mupen64PluginsDir_x64)")