From 29916190e7e1c5a45cc4eaf1a6637f1ffdcfb2ab Mon Sep 17 00:00:00 2001 From: Scott Cantor Date: Mon, 23 Jun 2008 21:53:45 +0000 Subject: [PATCH] Add cross-compile targets for x64. --- .gitignore | 1 + cpp-opensaml2.sln | 14 + saml/.gitignore | 1 + saml/saml.vcproj | 239 ++++- samlsign/.gitignore | 1 + samlsign/samlsign.vcproj | 160 +++ samltest/.gitignore | 1 + samltest/samltest.vcproj | 2470 +++++++++++++++++++++++++++++++++++++++------- 8 files changed, 2503 insertions(+), 384 deletions(-) diff --git a/.gitignore b/.gitignore index 8598224..2a9eb6a 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,4 @@ /.settings /doxyfile /release +/x64 diff --git a/cpp-opensaml2.sln b/cpp-opensaml2.sln index 30d3cc9..c3729c4 100644 --- a/cpp-opensaml2.sln +++ b/cpp-opensaml2.sln @@ -28,21 +28,35 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 + Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {34DE3EA5-EA05-4261-8B63-A850FFB91768}.Debug|Win32.ActiveCfg = Debug|Win32 {34DE3EA5-EA05-4261-8B63-A850FFB91768}.Debug|Win32.Build.0 = Debug|Win32 + {34DE3EA5-EA05-4261-8B63-A850FFB91768}.Debug|x64.ActiveCfg = Debug|x64 + {34DE3EA5-EA05-4261-8B63-A850FFB91768}.Debug|x64.Build.0 = Debug|x64 {34DE3EA5-EA05-4261-8B63-A850FFB91768}.Release|Win32.ActiveCfg = Release|Win32 {34DE3EA5-EA05-4261-8B63-A850FFB91768}.Release|Win32.Build.0 = Release|Win32 + {34DE3EA5-EA05-4261-8B63-A850FFB91768}.Release|x64.ActiveCfg = Release|x64 + {34DE3EA5-EA05-4261-8B63-A850FFB91768}.Release|x64.Build.0 = Release|x64 {8BBB3B12-DBA1-4533-9C36-2CA95F1F1659}.Debug|Win32.ActiveCfg = Debug|Win32 {8BBB3B12-DBA1-4533-9C36-2CA95F1F1659}.Debug|Win32.Build.0 = Debug|Win32 + {8BBB3B12-DBA1-4533-9C36-2CA95F1F1659}.Debug|x64.ActiveCfg = Debug|x64 + {8BBB3B12-DBA1-4533-9C36-2CA95F1F1659}.Debug|x64.Build.0 = Debug|x64 {8BBB3B12-DBA1-4533-9C36-2CA95F1F1659}.Release|Win32.ActiveCfg = Release|Win32 {8BBB3B12-DBA1-4533-9C36-2CA95F1F1659}.Release|Win32.Build.0 = Release|Win32 + {8BBB3B12-DBA1-4533-9C36-2CA95F1F1659}.Release|x64.ActiveCfg = Release|x64 + {8BBB3B12-DBA1-4533-9C36-2CA95F1F1659}.Release|x64.Build.0 = Release|x64 {C4E58F5A-AF7E-4060-89E7-5F690682E662}.Debug|Win32.ActiveCfg = Debug|Win32 {C4E58F5A-AF7E-4060-89E7-5F690682E662}.Debug|Win32.Build.0 = Debug|Win32 + {C4E58F5A-AF7E-4060-89E7-5F690682E662}.Debug|x64.ActiveCfg = Debug|x64 + {C4E58F5A-AF7E-4060-89E7-5F690682E662}.Debug|x64.Build.0 = Debug|x64 {C4E58F5A-AF7E-4060-89E7-5F690682E662}.Release|Win32.ActiveCfg = Release|Win32 {C4E58F5A-AF7E-4060-89E7-5F690682E662}.Release|Win32.Build.0 = Release|Win32 + {C4E58F5A-AF7E-4060-89E7-5F690682E662}.Release|x64.ActiveCfg = Release|x64 + {C4E58F5A-AF7E-4060-89E7-5F690682E662}.Release|x64.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/saml/.gitignore b/saml/.gitignore index 7839bbc..dd1c72b 100644 --- a/saml/.gitignore +++ b/saml/.gitignore @@ -5,3 +5,4 @@ /Makefile /Makefile.in /Release +/x64 diff --git a/saml/saml.vcproj b/saml/saml.vcproj index de99854..724c6f3 100644 --- a/saml/saml.vcproj +++ b/saml/saml.vcproj @@ -11,6 +11,9 @@ + @@ -62,7 +65,7 @@ /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -408,6 +571,24 @@ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc" /> + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samlsign/.gitignore b/samlsign/.gitignore index 020e470..7422ef4 100644 --- a/samlsign/.gitignore +++ b/samlsign/.gitignore @@ -1,3 +1,4 @@ /Debug /Release /*.user +/x64 diff --git a/samlsign/samlsign.vcproj b/samlsign/samlsign.vcproj index a8f5c0e..fedb808 100644 --- a/samlsign/samlsign.vcproj +++ b/samlsign/samlsign.vcproj @@ -11,6 +11,9 @@ + @@ -170,6 +173,163 @@ Name="VCPostBuildEventTool" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samltest/.gitignore b/samltest/.gitignore index 4486b1e..736a76e 100644 --- a/samltest/.gitignore +++ b/samltest/.gitignore @@ -7,3 +7,4 @@ /Makefile.in /samltest /Release +/x64 diff --git a/samltest/samltest.vcproj b/samltest/samltest.vcproj index f247932..4be4c21 100644 --- a/samltest/samltest.vcproj +++ b/samltest/samltest.vcproj @@ -11,6 +11,9 @@ + @@ -168,6 +171,161 @@ Name="VCPostBuildEventTool" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -596,6 +754,24 @@ Outputs=""$(InputDir)$(InputName)".cpp" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + @@ -2469,6 +4121,24 @@ Outputs=""$(InputDir)$(InputName)".cpp" /> + + + + + + + + + + + + + + + + + + -- 2.1.4