diff options
author | Jose <jose@zeroc.com> | 2018-12-13 18:19:58 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-12-13 18:19:58 +0100 |
commit | bc98d424f1cf67cbb39c218b7554d6c43899f4e5 (patch) | |
tree | dfc2f201695f2bf82dca753957c0e2d014f9174d /php/src | |
parent | Fixed for Java metrics test failure #217 (diff) | |
download | ice-bc98d424f1cf67cbb39c218b7554d6c43899f4e5.tar.bz2 ice-bc98d424f1cf67cbb39c218b7554d6c43899f4e5.tar.xz ice-bc98d424f1cf67cbb39c218b7554d6c43899f4e5.zip |
Build multiple PHP packages from a single source
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> |