From 5723cb7ba1992b35c3d79c9fb929fffee93aa649 Mon Sep 17 00:00:00 2001 From: Rob Swindell <rob@synchro.net> Date: Thu, 14 Sep 2023 21:49:35 -0700 Subject: [PATCH] Make output directories unique for these projects Apparently one was copied from the other and used the same original output file subdirectory name ("upgrade") oops. --- src/sbbs3/upgrade_to_v319.vcxproj | 4 ++-- src/sbbs3/upgrade_to_v320.vcxproj | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sbbs3/upgrade_to_v319.vcxproj b/src/sbbs3/upgrade_to_v319.vcxproj index debd8cb335..dbac98e49d 100644 --- a/src/sbbs3/upgrade_to_v319.vcxproj +++ b/src/sbbs3/upgrade_to_v319.vcxproj @@ -58,12 +58,12 @@ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <LinkIncremental>true</LinkIncremental> <OutDir>.\msvc.win32.exe.debug\</OutDir> - <IntDir>.\msvc.win32.debug\upgrade\</IntDir> + <IntDir>.\msvc.win32.debug\upgrade_to_v319\</IntDir> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <LinkIncremental>false</LinkIncremental> <OutDir>.\msvc.win32.exe.release\</OutDir> - <IntDir>.\msvc.win32.release\upgrade\</IntDir> + <IntDir>.\msvc.win32.release\upgrade_to_v319\</IntDir> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> diff --git a/src/sbbs3/upgrade_to_v320.vcxproj b/src/sbbs3/upgrade_to_v320.vcxproj index 6e330088ba..2ff4f11112 100644 --- a/src/sbbs3/upgrade_to_v320.vcxproj +++ b/src/sbbs3/upgrade_to_v320.vcxproj @@ -58,12 +58,12 @@ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <LinkIncremental>true</LinkIncremental> <OutDir>.\msvc.win32.exe.debug\</OutDir> - <IntDir>.\msvc.win32.debug\upgrade\</IntDir> + <IntDir>.\msvc.win32.debug\upgrade_to_v320\</IntDir> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <LinkIncremental>false</LinkIncremental> <OutDir>.\msvc.win32.exe.release\</OutDir> - <IntDir>.\msvc.win32.release\upgrade\</IntDir> + <IntDir>.\msvc.win32.release\upgrade_to_v320\</IntDir> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> -- GitLab