diff options
author | Christian Heimes <christian@cheimes.de> | 2007-11-19 08:36:32 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-11-19 08:36:32 (GMT) |
commit | 97e8029d0bb88823b1b6c9d302bbaf2e357dbc7f (patch) | |
tree | 1609aec6e81c4c3eae253dd5a1cf4bf4f5703b29 /PCbuild9/_ssl.vcproj | |
parent | a6b46357f652e620a4072ced75abd664be632210 (diff) | |
download | cpython-97e8029d0bb88823b1b6c9d302bbaf2e357dbc7f.zip cpython-97e8029d0bb88823b1b6c9d302bbaf2e357dbc7f.tar.gz cpython-97e8029d0bb88823b1b6c9d302bbaf2e357dbc7f.tar.bz2 |
I've spend some time to automate more steps of the build process. Now bzip2, bsddb, sqlite and openssl are automatically build by prelink steps.
I had to use some tricks to build openssl for 32 and 64bit CPUs in two separate build dirs.
Diffstat (limited to 'PCbuild9/_ssl.vcproj')
-rw-r--r-- | PCbuild9/_ssl.vcproj | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/PCbuild9/_ssl.vcproj b/PCbuild9/_ssl.vcproj index 64b95da..14cb70c 100644 --- a/PCbuild9/_ssl.vcproj +++ b/PCbuild9/_ssl.vcproj @@ -54,7 +54,7 @@ /> <Tool Name="VCPreLinkEventTool" - CommandLine="python_d.exe build_ssl.py $(ConfigurationName) -a" + CommandLine="python.exe build_ssl.py $(ConfigurationName) $(PlatformName) -a" /> <Tool Name="VCLinkerTool" @@ -109,7 +109,7 @@ /> <Tool Name="VCCLCompilerTool" - AdditionalIncludeDirectories="$(opensslDir)\inc32" + AdditionalIncludeDirectories="$(opensslDir)\inc64" PreprocessorDefinitions="_SOCKET_EXPORTS" UsePrecompiledHeader="0" /> @@ -121,11 +121,11 @@ /> <Tool Name="VCPreLinkEventTool" - CommandLine="python_d.exe build_ssl.py $(ConfigurationName) -a" + CommandLine="python.exe build_ssl.py $(ConfigurationName) $(PlatformName) -a" /> <Tool Name="VCLinkerTool" - AdditionalDependencies="ws2_32.lib $(opensslDir)\out32\libeay32.lib $(opensslDir)\out32\ssleay32.lib" + AdditionalDependencies="ws2_32.lib $(opensslDir)\out64\libeay32.lib $(opensslDir)\out64\ssleay32.lib" LinkIncremental="2" GenerateDebugInformation="true" SubSystem="2" @@ -191,7 +191,7 @@ /> <Tool Name="VCPreLinkEventTool" - CommandLine="python.exe build_ssl.py $(ConfigurationName) -a" + CommandLine="python.exe build_ssl.py $(ConfigurationName) $(PlatformName) -a" /> <Tool Name="VCLinkerTool" @@ -250,7 +250,7 @@ <Tool Name="VCCLCompilerTool" EnableIntrinsicFunctions="true" - AdditionalIncludeDirectories="$(opensslDir)\inc32" + AdditionalIncludeDirectories="$(opensslDir)\inc64" PreprocessorDefinitions="_SOCKET_EXPORTS" UsePrecompiledHeader="0" WarningLevel="3" @@ -264,11 +264,11 @@ /> <Tool Name="VCPreLinkEventTool" - CommandLine="python.exe build_ssl.py $(ConfigurationName) -a" + CommandLine="python.exe build_ssl.py $(ConfigurationName) $(PlatformName) -a" /> <Tool Name="VCLinkerTool" - AdditionalDependencies="ws2_32.lib $(opensslDir)\out32\libeay32.lib $(opensslDir)\out32\ssleay32.lib" + AdditionalDependencies="ws2_32.lib $(opensslDir)\out64\libeay32.lib $(opensslDir)\out64\ssleay32.lib" LinkIncremental="1" GenerateDebugInformation="true" SubSystem="2" |