diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-07-27 21:56:58 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-07-27 21:56:58 (GMT) |
commit | de9fb28bf1a1d506916c34a5e4858807dc1f9575 (patch) | |
tree | c2ecb9bfd152ccde9de0a20843ad487373e97032 /PCbuild/openssl.props | |
parent | bea232a15fc818341217901772c7e622e9f9332d (diff) | |
download | cpython-de9fb28bf1a1d506916c34a5e4858807dc1f9575.zip cpython-de9fb28bf1a1d506916c34a5e4858807dc1f9575.tar.gz cpython-de9fb28bf1a1d506916c34a5e4858807dc1f9575.tar.bz2 |
Allow intermediate build directory to be overridden.
Diffstat (limited to 'PCbuild/openssl.props')
-rw-r--r-- | PCbuild/openssl.props | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/PCbuild/openssl.props b/PCbuild/openssl.props index d4ef7ac..d094e59 100644 --- a/PCbuild/openssl.props +++ b/PCbuild/openssl.props @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <Py_IntDir Condition="'$(Py_IntDir)' == ''">$(opensslDir)tmp\</Py_IntDir> + </PropertyGroup> + <Import Project="pyproject.props" /> <PropertyGroup Label="Configuration"> <ConfigurationType>StaticLibrary</ConfigurationType> - <IntDir>$(opensslDir)tmp\$(ArchName)_$(Configuration)\$(ProjectName)\</IntDir> - <IntDir Condition="$(Configuration) == 'PGInstrument' or $(Configuration) == 'PGUpdate'">$(opensslDir)tmp\$(ArchName)\$(ProjectName)\</IntDir> </PropertyGroup> <ItemGroup> |