diff options
Diffstat (limited to 'php/src')
-rw-r--r-- | php/src/php7/msbuild/php_ice.vcxproj | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/php/src/php7/msbuild/php_ice.vcxproj b/php/src/php7/msbuild/php_ice.vcxproj index f7a43593014..87851ae9d94 100644 --- a/php/src/php7/msbuild/php_ice.vcxproj +++ b/php/src/php7/msbuild/php_ice.vcxproj @@ -119,43 +119,51 @@ </ImportGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <TargetName>$(ProjectName)</TargetName> - <OutDir>..\..\..\lib\$(Platform)\$(Configuration)\</OutDir> + <OutDir>..\..\..\lib\php-$(BuildWithPhpVersion)\$(Platform)\$(Configuration)\</OutDir> <PhpThreadSafe>yes</PhpThreadSafe> + <IntDir>php-$(BuildWithPhpVersion)\$(Platform)\$(Configuration)\</IntDir> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='NTS-Debug|Win32'"> <TargetName>$(ProjectName)_nts</TargetName> - <OutDir>..\..\..\lib\$(Platform)\Debug\</OutDir> + <OutDir>..\..\..\lib\php-$(BuildWithPhpVersion)\$(Platform)\Debug\</OutDir> <PhpThreadSafe>no</PhpThreadSafe> + <IntDir>php-$(BuildWithPhpVersion)\$(Platform)\$(Configuration)\</IntDir> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <TargetName>$(ProjectName)</TargetName> - <OutDir>..\..\..\lib\$(Platform)\$(Configuration)\</OutDir> + <OutDir>..\..\..\lib\php-$(BuildWithPhpVersion)\$(Platform)\$(Configuration)\</OutDir> <PhpThreadSafe>yes</PhpThreadSafe> + <IntDir>php-$(BuildWithPhpVersion)\$(Platform)\$(Configuration)\</IntDir> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='NTS-Debug|x64'"> <TargetName>$(ProjectName)_nts</TargetName> - <OutDir>..\..\..\lib\$(Platform)\Debug\</OutDir> + <OutDir>..\..\..\lib\php-$(BuildWithPhpVersion)\$(Platform)\Debug\</OutDir> <PhpThreadSafe>no</PhpThreadSafe> + <IntDir>php-$(BuildWithPhpVersion)\$(Platform)\$(Configuration)\</IntDir> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <TargetName>$(ProjectName)</TargetName> - <OutDir>..\..\..\lib\$(Platform)\$(Configuration)\</OutDir> + <OutDir>..\..\..\lib\php-$(BuildWithPhpVersion)\$(Platform)\$(Configuration)\</OutDir> <PhpThreadSafe>yes</PhpThreadSafe> + <IntDir>php-$(BuildWithPhpVersion)\$(Platform)\$(Configuration)\</IntDir> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='NTS-Release|Win32'"> <TargetName>$(ProjectName)_nts</TargetName> - <OutDir>..\..\..\lib\$(Platform)\Release\</OutDir> + <OutDir>..\..\..\lib\php-$(BuildWithPhpVersion)\$(Platform)\Release\</OutDir> <PhpThreadSafe>no</PhpThreadSafe> + <IntDir>php-$(BuildWithPhpVersion)\$(Platform)\$(Configuration)\</IntDir> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <TargetName>$(ProjectName)</TargetName> - <OutDir>..\..\..\lib\$(Platform)\$(Configuration)\</OutDir> + <OutDir>..\..\..\lib\php-$(BuildWithPhpVersion)\$(Platform)\$(Configuration)\</OutDir> <PhpThreadSafe>yes</PhpThreadSafe> + <IntDir>php-$(BuildWithPhpVersion)\$(Platform)\$(Configuration)\</IntDir> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='NTS-Release|x64'"> <TargetName>$(ProjectName)_nts</TargetName> - <OutDir>..\..\..\lib\$(Platform)\Release\</OutDir> + <OutDir>..\..\..\lib\php-$(BuildWithPhpVersion)\$(Platform)\Release\</OutDir> <PhpThreadSafe>no</PhpThreadSafe> + <IntDir>php-$(BuildWithPhpVersion)\$(Platform)\$(Configuration)\</IntDir> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> |