FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/PCbuild/openssl.props at 2.7 · python/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
35.3k
Star
75k
Code
Issues
5k+
Pull requests
2.6k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
PCbuild
/
openssl.props
Copy path
More file actions
More file actions
Latest commit
History
History
History
74 lines (68 loc) · 3.62 KB
Breadcrumbs
cpython
/
PCbuild
/
openssl.props
Copy path
File metadata and controls
74 lines (68 loc) · 3.62 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<
?xm
l versio
n
=
"1.
0
" encodin
g
=
"utf-
8
"?>
<
Project
ToolsVersion
=
"
4.0
"
xmlns
=
"
http://schemas.microsoft.com/developer/msbuild/2003
"
>
<
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
>
<
PreprocessorDefinitions
Include
=
"
DSO_WIN32
"
/>
<
PreprocessorDefinitions
Include
=
"
WIN32_LEAN_AND_MEAN
"
/>
<
PreprocessorDefinitions
Include
=
"
L_ENDIAN
"
/>
<
PreprocessorDefinitions
Include
=
"
_CRT_SECURE_NO_WARNINGS
"
/>
<
PreprocessorDefinitions
Include
=
"
_CRT_SECURE_NO_DEPRECATE
"
/>
<
PreprocessorDefinitions
Include
=
"
OPENSSL_THREADS
"
/>
<!--
<PreprocessorDefinitions Include="OPENSSL_SYSNAME_WIN32" />
-->
<
PreprocessorDefinitions
Include
=
"
OPENSSL_IA32_SSE2
"
/>
<
PreprocessorDefinitions
Include
=
"
SHA1_ASM
"
/>
<
PreprocessorDefinitions
Include
=
"
SHA256_ASM
"
/>
<
PreprocessorDefinitions
Include
=
"
SHA512_ASM
"
/>
<
PreprocessorDefinitions
Include
=
"
MD5_ASM
"
/>
<
PreprocessorDefinitions
Include
=
"
AES_ASM
"
/>
<
PreprocessorDefinitions
Include
=
"
VPAES_ASM
"
/>
<
PreprocessorDefinitions
Include
=
"
WHIRLPOOL_ASM
"
/>
<
PreprocessorDefinitions
Include
=
"
GHASH_ASM
"
/>
<
PreprocessorDefinitions
Include
=
"
OPENSSL_NO_IDEA
"
/>
<
PreprocessorDefinitions
Include
=
"
OPENSSL_NO_RC5
"
/>
<
PreprocessorDefinitions
Include
=
"
OPENSSL_NO_MD2
"
/>
<
PreprocessorDefinitions
Include
=
"
OPENSSL_NO_MDC2
"
/>
<
PreprocessorDefinitions
Include
=
"
OPENSSL_NO_KRB5
"
/>
<
PreprocessorDefinitions
Include
=
"
OPENSSL_NO_JPAKE
"
/>
<
PreprocessorDefinitions
Include
=
"
OPENSSL_NO_RDRAND
"
/>
<
PreprocessorDefinitions
Include
=
"
OPENSSL_NO_RSAX
"
/>
<
PreprocessorDefinitions
Include
=
"
OPENSSL_NO_DYNAMIC_ENGINE
"
/>
</
ItemGroup
>
<
ItemGroup
Condition
=
"
'$(Platform)'=='Win32'
"
>
<
PreprocessorDefinitions
Include
=
"
OPENSSL_BN_ASM_GF2m
"
/>
<
PreprocessorDefinitions
Include
=
"
OPENSSL_BN_ASM_PART_WORDS
"
/>
<
PreprocessorDefinitions
Include
=
"
OPENSSL_BN_ASM_MONT
"
/>
<
PreprocessorDefinitions
Include
=
"
RMD160_ASM
"
/>
</
ItemGroup
>
<
PropertyGroup
>
<
_PreprocessorDefinitionList
>@(PreprocessorDefinitions)</
_PreprocessorDefinitionList
>
</
PropertyGroup
>
<
ItemDefinitionGroup
>
<
ClCompile
>
<!--
Suppress 64-bit truncation warnings - they aren't ours to worry about
-->
<
DisableSpecificWarnings
>4244;4267</
DisableSpecificWarnings
>
<
AdditionalIncludeDirectories
>$(opensslDir);$(opensslIncludeDir);$(opensslDir)crypto;$(opensslDir)crypto\asn1;$(opensslDir)crypto\evp;$(opensslDir)crypto\modes</
AdditionalIncludeDirectories
>
<
PreprocessorDefinitions
>$(_PreprocessorDefinitionList);%(PreprocessorDefinitions)</
PreprocessorDefinitions
>
</
ClCompile
>
</
ItemDefinitionGroup
>
<
Target
Name
=
"
FindNasm
"
>
<
PropertyGroup
>
<
nasm
Condition
=
"
$(Platform) == 'Win32'
"
>nasm.exe -f win32</
nasm
>
<
nasm
Condition
=
"
$(Platform) == 'x64'
"
>nasm.exe -f win64 -DNEAR -Ox -g</
nasm
>
</
PropertyGroup
>
</
Target
>
<
Target
Name
=
"
BuildNasmFiles
"
BeforeTargets
=
"
PreBuildEvent
"
DependsOnTargets
=
"
PrepareForBuild;FindNasm
"
Inputs
=
"
@(NasmCompile)
"
Outputs
=
"
@(NasmCompile->'$(IntDir)%(Filename).obj')
"
>
<
Exec
Command
=
'
setlocal
set PATH=$(nasmDir);%PATH%
$(nasm) -o "$(IntDir)%(NasmCompile.Filename).obj" "%(NasmCompile.FullPath)"
'
/>
<
ItemGroup
>
<
Link
Include
=
"
$(IntDir)%(NasmCompile.Filename).obj
"
/>
<
Lib
Include
=
"
$(IntDir)%(NasmCompile.Filename).obj
"
/>
</
ItemGroup
>
</
Target
>
</
Project
>
Back
|
FazBrowse Home
|
New Git URL