summaryrefslogtreecommitdiff
path: root/win32/vs9
diff options
context:
space:
mode:
Diffstat (limited to 'win32/vs9')
-rw-r--r--win32/vs9/.gitignore2
-rw-r--r--win32/vs9/Makefile.am21
-rw-r--r--win32/vs9/README.txt109
-rw-r--r--win32/vs9/atk-build-defines.vsprops34
-rw-r--r--win32/vs9/atk-gen-src.vsprops34
-rw-r--r--win32/vs9/atk-install.vcproj122
-rw-r--r--win32/vs9/atk-install.vspropsin34
-rw-r--r--win32/vs9/atk-introspect.vcproj76
-rw-r--r--win32/vs9/atk-version-paths.vsprops.in77
-rw-r--r--win32/vs9/atk.sln49
-rw-r--r--win32/vs9/atk.vcprojin243
11 files changed, 0 insertions, 801 deletions
diff --git a/win32/vs9/.gitignore b/win32/vs9/.gitignore
deleted file mode 100644
index 0e18109..0000000
--- a/win32/vs9/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-atk.vcproj
-atk-install.vsprops
diff --git a/win32/vs9/Makefile.am b/win32/vs9/Makefile.am
deleted file mode 100644
index 48dcdc1..0000000
--- a/win32/vs9/Makefile.am
+++ /dev/null
@@ -1,21 +0,0 @@
-GENERATED_ITEMS = \
- atk.vcproj \
- atk-install.vsprops
-
-EXTRA_DIST = \
- README.txt \
- atk.sln \
- atk.vcprojin \
- atk-install.vcproj \
- atk-introspect.vcproj \
- atk-build-defines.vsprops \
- atk-gen-src.vsprops \
- atk-install.vspropsin \
- atk-version-paths.vsprops \
- $(GENERATED_ITEMS)
-
-atk-install.vsprops: $(top_srcdir)/win32/vs9/atk-install.vspropsin atk.headers
- $(CPP) -P - <$(top_srcdir)/win32/vs9/atk-install.vspropsin >$@
- rm atk.headers
-
-DISTCLEANFILES = $(GENERATED_ITEMS)
diff --git a/win32/vs9/README.txt b/win32/vs9/README.txt
deleted file mode 100644
index b517104..0000000
--- a/win32/vs9/README.txt
+++ /dev/null
@@ -1,109 +0,0 @@
-Please do not build this package in a path that contains spaces to avoid
-possible problems during the build or during the usage of the library.
-
-Please refer to the following GNOME Live! page for more detailed
-instructions on building ATK and its dependencies with Visual C++:
-
-https://live.gnome.org/GTK%2B/Win32/MSVCCompilationOfGTKStack
-
-This VS9 solution and the projects it includes are intented to be used
-in a ATK source tree unpacked from a tarball. In a git checkout you
-first need to use some Unix-like environment or manual work to expand
-the .in files needed, mainly config.h.win32.in into config.h.win32.
-You will also need to expand atk.vcprojin here into
-atk.vcproj.
-
-The dependencies for this package are gettext-runtime (libintl), GLib*
-and ZLib.
-
-You will also need a Python 2.7.x or 3.x installation, as Python will be
-used to run glib-genmarshal, which was converted into a Python script from
-a compiled C program, in addition to generating the atk.pc pkg-config
-file for the build. See PythonDir (32-bit builds) or PythonDirX64 (x64
-builds) in atk-version-paths.vsprops to see that they point to the correct paths.
-
-a) look for all of the dependencies (except GLib*) under
-
- http://ftp.gnome.org/pub/GNOME/binaries/win32/dependencies/ (32-bit) -OR-
- http://ftp.gnome.org/pub/GNOME/binaries/win64/dependencies/ (64-bit)
-
- Please use the latest versions of these libraries that are available there,
- these are packaged by Tor Lillqvist, which are built with MinGW/GCC.
- Please see b) below regarding the build of GLib*
-
--OR-
-
-b) Build them yourself with VS9 (but you may most probably wish to get
- gettext-runtime from the URL(s) mentioned in a)). Use the latest
- stable versions for them (you may need to get the latest unstable version of
- GLib if you are using an unstable version of ATK):
-
- GLib*: Grab the latest sources from http://www.gtk.org under "Download"
- (stable only-please make a search for the latest unstable versions)
- ZLib: http://www.zlib.net
-
- The above 2 packages all have supported mechanisms (Makefiles and/or Project
- Files) for building under VS9 (upgrade the Project Files from earlier VS
- versions will do for these, when applicable)
-
-* This GLib refers to a build that is built by VS9
-
-Set up the source tree as follows under some arbitrary top
-folder <root>:
-
-<root>\atk\<this-atk-source-tree>
-<root>\vs9\<PlatformName>
-
-*this* file you are now reading is thus located at
-<root>\atk\<this-atk-source-tree>\win32\vs9\README.
-
-<PlatformName> is either Win32 or x64, as in VS9 project files.
-
-You should unpack the <dependent-package>-dev and <dependent-packge> (runtime)
-into <root>\vs9\<PlatformName>, if you download any of the packages from
-
-http://ftp.gnome.org/pub/GNOME/binaries/win32/dependencies/ (32-bit) -OR-
-http://ftp.gnome.org/pub/GNOME/binaries/win64/dependencies/ (64-bit)
-
-so that for instance libintl.h end up at
-<root>\vs9\<PlatformName>\include\libintl.h.
-
-If you build any of the dependencies yourselves, copy the:
--DLLs and EXEs into <root>\vs9\<PlatformName>\bin
--headers into <root>\vs9\<PlatformName>\include\
--LIBs into <root>\vs9\<PlatformName>\lib
-
-If you have not built GLib with VS9 and placed the LIBs and headers in a
-place where VS9 can find them automatically, you should also uncompress
-your GLib sources in <root>\ and build it from there, following the
-instructions in <root>\glib<-version>\win32\vs9, so that the required
-headers, EXEs, DLLs and LIBs will end up in
-<root>\vs9\<PlatformName>\include\glib-2.0 (headers)
-<root>\vs9\<PlatformName>\lib (LIBs, also glib-2.0/include/glibconfig.h)
-<root>\vs9\<PlatformName>\bin (EXEs/DLLs)
-respectively.
-
-Building introspection files is now integrated in the solution files, but this is
-not built by default. In order for this to work, ensure that PythonDir (32-bit builds)
-and/or PythonDirX64 (x64 builds) are set at the installation directory of where your
-Python installation is. Please note the following:
-
--This Python installation must be the same installation/configuration as the
- one that was used to build GObject-Introspection.
-
--g-ir-scanner needs to be found at <root>\vs9\<PlatformName>\bin, and the
- other Python items needs to be under <root>\vs9\<PlatformName>\lib\gobject-introspection.
-
--Use the rebuild command on this project, atk-introspect, to re-build or build for other
- configurations.
-
-After the build of ATK, the "install" project will copy build results
-and headers into their appropriate location under <root>\vs9\<PlatformName>.
-For instance, built DLLs go into <root>\vs9\<PlatformName>\bin, built LIBs into
-<root>\vs9\<PlatformName>\lib and atk headers into
-<root>\vs9\<PlatformName>\include\atk-1.0. This is then from where
-project files higher in the stack are supposed to look for them, not
-from a specific ATK source tree.
-
---Chun-wei Fan <fanc999@yahoo.com.tw>
---(adapted from the GLib VS9 README.txt file originally written by Tor Lillqvist)
diff --git a/win32/vs9/atk-build-defines.vsprops b/win32/vs9/atk-build-defines.vsprops
deleted file mode 100644
index e363626..0000000
--- a/win32/vs9/atk-build-defines.vsprops
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
- ProjectType="Visual C++"
- Version="8.00"
- Name="atkbuilddefinesprops"
- OutputDirectory="$(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin"
- IntermediateDirectory="$(SolutionDir)$(ConfigurationName)\$(PlatformName)\obj\$(ProjectName)\"
- InheritedPropertySheets=".\atk-version-paths.vsprops"
- >
- <Tool
- Name="VCCLCompilerTool"
- AdditionalIncludeDirectories="..\..;..\..\atk;$(GLibEtcInstallRoot)\include\glib-2.0;$(GLibEtcInstallRoot)\lib\glib-2.0\include;$(GLibEtcInstallRoot)\include"
- PreprocessorDefinitions="HAVE_CONFIG_H;G_DISABLE_SINGLE_INCLUDES"
- ForcedIncludeFiles="msvc_recommended_pragmas.h"
- AdditionalOptions="/MP"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalDependencies="glib-2.0.lib gobject-2.0.lib gmodule-2.0.lib intl.lib"
- AdditionalLibraryDirectories="$(GLibEtcInstallRoot)\lib"
- />
- <UserMacro
- Name="AtkDefines"
- Value="ATK_COMPILATION;DLL_EXPORT;ATK_LOCALEDIR=\&quot;/dummy/share/locale\&quot;"
- />
- <UserMacro
- Name="AtkIntrospectNMakeCmd"
- Value="cd ..&#x0D;&#x0A;set VCInstallDir=$(VCInstallDir)&#x0D;&#x0A;nmake -f atk-introspection-msvc.mak CFG=$(ConfigurationName) PREFIX=$(GlibEtcInstallRoot)"
- />
- <UserMacro
- Name="AtkIntrospectBuiltFiles"
- Value="$(SolutionDir)\..\Atk-1.0.gir;$(SolutionDir)\..\Atk-1.0.typelib"
- />
-</VisualStudioPropertySheet>
diff --git a/win32/vs9/atk-gen-src.vsprops b/win32/vs9/atk-gen-src.vsprops
deleted file mode 100644
index 8468687..0000000
--- a/win32/vs9/atk-gen-src.vsprops
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
- ProjectType="Visual C++"
- Version="8.00"
- Name="atkgensrcprops"
- InheritedPropertySheets=".\atk-build-defines.vsprops"
- >
- <UserMacro
- Name="GenConfigH"
- Value="if not exist ..\..\config.h copy ..\..\config.h.win32 ..\..\config.h"
- />
- <UserMacro
- Name="GenMarshalSrc"
- Value="
-cd ..\..\atk&#x0D;&#x0A;
-$(PythonDir)\python $(GLibEtcInstallRoot)\bin\glib-genmarshal --prefix=atk_marshal --quiet --header --output=atkmarshal.h atkmarshal.list 2&gt;nul &amp; set ERRORLEVEL=0&#x0D;&#x0A;
-if not exist atkmarshal.h $(GLibEtcInstallRoot)\bin\glib-genmarshal --prefix=atk_marshal atkmarshal.list --header &gt; atkmarshal.h&#x0D;&#x0A;
-$(PythonDir)\python $(GLibEtcInstallRoot)\bin\glib-genmarshal --prefix=atk_marshal --quiet --body --output=atkmarshal.c atkmarshal.list 2&gt;nul &amp; set ERRORLEVEL=0&#x0D;&#x0A;
-if not exist atkmarshal.c $(GLibEtcInstallRoot)\bin\glib-genmarshal --prefix=atk_marshal atkmarshal.list --body &gt; atkmarshal.c&#x0D;&#x0A;
-cd $(SolutionDir)&#x0D;&#x0A;
- "
- />
- <UserMacro
- Name="GenMarshalSrcX64"
- Value="
-cd ..\..\atk&#x0D;&#x0A;
-$(PythonDirX64)\python $(GLibEtcInstallRoot)\bin\glib-genmarshal --prefix=atk_marshal --quiet --header --output=atkmarshal.h atkmarshal.list 2&gt;nul &amp; set ERRORLEVEL=0&#x0D;&#x0A;
-if not exist atkmarshal.h $(GLibEtcInstallRoot)\bin\glib-genmarshal --prefix=atk_marshal atkmarshal.list --header &gt; atkmarshal.h&#x0D;&#x0A;
-$(PythonDirX64)\python $(GLibEtcInstallRoot)\bin\glib-genmarshal --prefix=atk_marshal --quiet --body --output=atkmarshal.c atkmarshal.list 2&gt;nul &amp; set ERRORLEVEL=0&#x0D;&#x0A;
-if not exist atkmarshal.c $(GLibEtcInstallRoot)\bin\glib-genmarshal --prefix=atk_marshal atkmarshal.list --body &gt; atkmarshal.c&#x0D;&#x0A;
-cd $(SolutionDir)&#x0D;&#x0A;
- "
- />
-</VisualStudioPropertySheet>
diff --git a/win32/vs9/atk-install.vcproj b/win32/vs9/atk-install.vcproj
deleted file mode 100644
index ff970ce..0000000
--- a/win32/vs9/atk-install.vcproj
+++ /dev/null
@@ -1,122 +0,0 @@
-<?xml version="1.0" encoding="big5"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="9.00"
- Name="atk-install"
- ProjectGUID="{00702787-1566-484D-991F-3E7E459BB909}"
- RootNamespace="atkinstall"
- TargetFrameworkVersion="196613"
- >
- <Platforms>
- <Platform
- Name="Win32"
- />
- <Platform
- Name="x64"
- />
- </Platforms>
- <ToolFiles>
- </ToolFiles>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- OutputDirectory="$(GLibEtcInstallRoot)"
- IntermediateDirectory="$(ConfigurationName)"
- ConfigurationType="10"
- InheritedPropertySheets=".\atk-install.vsprops"
- CharacterSet="2"
- >
- <Tool
- Name="VCPostBuildEventTool"
- CommandLine="$(AtkDoInstall)"
- />
- </Configuration>
- <Configuration
- Name="Debug|x64"
- OutputDirectory="$(GLibEtcInstallRoot)"
- InheritedPropertySheets=".\atk-install.vsprops"
- ConfigurationType="10"
- CharacterSet="2"
- DeleteExtensionsOnClean=""
- >
- <Tool
- Name="VCPostBuildEventTool"
- CommandLine="$(AtkDoInstall)"
- />
- </Configuration>
- <Configuration
- Name="Release|Win32"
- OutputDirectory="$(GLibEtcInstallRoot)"
- IntermediateDirectory="$(ConfigurationName)"
- ConfigurationType="10"
- InheritedPropertySheets=".\atk-install.vsprops"
- CharacterSet="2"
- WholeProgramOptimization="1"
- >
- <Tool
- Name="VCPostBuildEventTool"
- CommandLine="$(AtkDoInstall)"
- />
- </Configuration>
- <Configuration
- Name="Release|x64"
- OutputDirectory="$(GLibEtcInstallRoot)"
- InheritedPropertySheets=".\atk-install.vsprops"
- ConfigurationType="10"
- CharacterSet="2"
- WholeProgramOptimization="1"
- DeleteExtensionsOnClean=""
- >
- <Tool
- Name="VCPostBuildEventTool"
- CommandLine="$(AtkDoInstall)"
- />
- </Configuration>
- </Configurations>
- <References>
- </References>
- <Files>
- <Filter
- Name="Resource Files"
- Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
- UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
- >
- <File RelativePath="..\..\atk.pc.in">
- <FileConfiguration Name="Debug|Win32">
- <Tool
- Name="VCCustomBuildTool"
- Description="Generating atk.pc..."
- CommandLine="$(AtkGenPC)"
- Outputs="..\atk.pc"
- />
- </FileConfiguration>
- <FileConfiguration Name="Release|Win32">
- <Tool
- Name="VCCustomBuildTool"
- Description="Generating atk.pc..."
- CommandLine="$(AtkGenPC)"
- Outputs="..\atk.pc"
- />
- </FileConfiguration>
- <FileConfiguration Name="Debug|x64">
- <Tool
- Name="VCCustomBuildTool"
- Description="Generating atk.pc..."
- CommandLine="$(AtkGenPCX64)"
- Outputs="..\atk.pc"
- />
- </FileConfiguration>
- <FileConfiguration Name="Release|x64">
- <Tool
- Name="VCCustomBuildTool"
- Description="Generating atk.pc..."
- CommandLine="$(AtkGenPCX64)"
- Outputs="..\atk.pc"
- />
- </FileConfiguration>
- </File>
- </Filter>
- </Files>
- <Globals>
- </Globals>
-</VisualStudioProject>
diff --git a/win32/vs9/atk-install.vspropsin b/win32/vs9/atk-install.vspropsin
deleted file mode 100644
index dcb22d4..0000000
--- a/win32/vs9/atk-install.vspropsin
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
- ProjectType="Visual C++"
- Version="8.00"
- Name="atkinstallprops"
- InheritedPropertySheets=".\atk-build-defines.vsprops"
- >
- <UserMacro
- Name="AtkDoInstall"
- Value="
-mkdir $(CopyDir)&#x0D;&#x0A;
-mkdir $(CopyDir)\bin&#x0D;&#x0A;
-copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\$(AtkDllPrefix)atk$(AtkDllSuffix).dll $(CopyDir)\bin&#x0D;&#x0A;
-copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\$(AtkDllPrefix)atk$(AtkDllSuffix).pdb $(CopyDir)\bin&#x0D;&#x0A;
-
-mkdir $(CopyDir)\lib&#x0D;&#x0A;
-copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\atk-$(ApiVersion).lib $(CopyDir)\lib&#x0D;&#x0A;
-
-mkdir $(CopyDir)\include\atk-$(ApiVersion)\atk&#x0D;&#x0A;
-#include "atk.headers"
-
-mkdir $(CopyDir)\lib\pkgconfig&#x0D;&#x0A;
-copy ..\atk.pc $(CopyDir)\lib\pkgconfig&#x0D;&#x0A;
-"
- />
- <UserMacro
- Name="AtkGenPC"
- Value="$(PythonDir)\python.exe ..\atkpc.py --prefix=$(CopyDir) --version=$(AtkMajorVersion).$(AtkMinorVersion).$(AtkMicroVersion)"
- />
- <UserMacro
- Name="AtkGenPCX64"
- Value="$(PythonDirX64)\python.exe ..\atkpc.py --prefix=$(CopyDir) --version=$(AtkMajorVersion).$(AtkMinorVersion).$(AtkMicroVersion)"
- />
-</VisualStudioPropertySheet>
diff --git a/win32/vs9/atk-introspect.vcproj b/win32/vs9/atk-introspect.vcproj
deleted file mode 100644
index 49805d7..0000000
--- a/win32/vs9/atk-introspect.vcproj
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="9.00"
- Name="atk-introspect"
- ProjectGUID="{7034D75B-2AC9-4EA6-97A2-DB4F8526EC5A}"
- Keyword="MakeFileProj"
- TargetFrameworkVersion="196613"
- >
- <Platforms>
- <Platform
- Name="Win32"
- />
- <Platform
- Name="x64"
- />
- </Platforms>
- <ToolFiles>
- </ToolFiles>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- ConfigurationType="0"
- InheritedPropertySheets=".\atk-build-defines.vsprops"
- >
- <Tool
- Name="VCNMakeTool"
- BuildCommandLine="$(AtkIntrospectNMakeCmd) $(IntrospectPythonParam) install-introspection"
- ReBuildCommandLine="$(AtkIntrospectNMakeCmd) $(IntrospectPythonParam) clean install-introspection"
- CleanCommandLine="$(AtkIntrospectNMakeCmd) $(IntrospectPythonParam) clean"
- Output="$(AtkIntrospectBuiltFiles)"
- />
- </Configuration>
- <Configuration
- Name="Debug|x64"
- ConfigurationType="0"
- InheritedPropertySheets=".\atk-build-defines.vsprops"
- >
- <Tool
- Name="VCNMakeTool"
- BuildCommandLine="$(AtkIntrospectNMakeCmd) $(IntrospectPythonParamX64) install-introspection"
- ReBuildCommandLine="$(AtkIntrospectNMakeCmd) $(IntrospectPythonParamX64) clean install-introspection"
- CleanCommandLine="$(AtkIntrospectNMakeCmd) $(IntrospectPythonParamX64) clean"
- Output="$(AtkIntrospectBuiltFiles)"
- />
- </Configuration>
- <Configuration
- Name="Release|Win32"
- ConfigurationType="0"
- InheritedPropertySheets=".\atk-build-defines.vsprops"
- CharacterSet="2"
- DeleteExtensionsOnClean=""
- >
- <Tool
- Name="VCNMakeTool"
- BuildCommandLine="$(AtkIntrospectNMakeCmd) $(IntrospectPythonParam) install-introspection"
- ReBuildCommandLine="$(AtkIntrospectNMakeCmd) $(IntrospectPythonParam) clean install-introspection"
- CleanCommandLine="$(AtkIntrospectNMakeCmd) $(IntrospectPythonParam) clean"
- Output="$(AtkIntrospectBuiltFiles)"
- />
- </Configuration>
- <Configuration
- Name="Release|x64"
- ConfigurationType="0"
- InheritedPropertySheets=".\atk-build-defines.vsprops"
- >
- <Tool
- Name="VCNMakeTool"
- BuildCommandLine="$(AtkIntrospectNMakeCmd) $(IntrospectPythonParamX64) install-introspection"
- ReBuildCommandLine="$(AtkIntrospectNMakeCmd) $(IntrospectPythonParamX64) clean install-introspection"
- CleanCommandLine="$(AtkIntrospectNMakeCmd) $(IntrospectPythonParamX64) clean"
- Output="$(AtkIntrospectBuiltFiles)"
- />
- </Configuration>
- </Configurations>
-</VisualStudioProject>
diff --git a/win32/vs9/atk-version-paths.vsprops.in b/win32/vs9/atk-version-paths.vsprops.in
deleted file mode 100644
index 9d9973a..0000000
--- a/win32/vs9/atk-version-paths.vsprops.in
+++ /dev/null
@@ -1,77 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
- ProjectType="Visual C++"
- Version="8.00"
- Name="atkversionpathsprops"
- >
- <UserMacro
- Name="VSVer"
- Value="9"
- />
- <UserMacro
- Name="ApiVersion"
- Value="1.0"
- />
- <UserMacro
- Name="AtkMajorVersion"
- Value="@ATK_MAJOR_VERSION@"
- />
- <UserMacro
- Name="AtkMinorVersion"
- Value="@ATK_MINOR_VERSION@"
- />
- <UserMacro
- Name="AtkMicroVersion"
- Value="@ATK_MICRO_VERSION@"
- />
- <UserMacro
- Name="GLibEtcInstallRoot"
- Value="$(SolutionDir)\..\..\..\vs$(VSVER)\$(PlatformName)"
- />
- <UserMacro
- Name="CopyDir"
- Value="$(GLibEtcInstallRoot)"
- />
- <UserMacro
- Name="AtkLibtoolCompatibleDllPrefix"
- Value="lib"
- />
- <UserMacro
- Name="AtkLibtoolCompatibleDllSuffix"
- Value="-$(ApiVersion)-0"
- />
- <UserMacro
- Name="AtkSeparateVSDllPrefix"
- Value=""
- />
- <UserMacro
- Name="AtkSeparateVSDllSuffix"
- Value="-1-vs$(VSVER)"
- />
- <!-- Change these two to AtkLibtoolCompatibleDllPrefix and
- AtkLibtoolCompatibleDllSuffix if that is what you want -->
- <UserMacro
- Name="AtkDllPrefix"
- Value="$(AtkSeparateVSDllPrefix)"
- />
- <UserMacro
- Name="AtkDllSuffix"
- Value="$(AtkSeparateVSDllSuffix)"
- />
- <UserMacro
- Name="PythonDir"
- Value="c:\\python27"
- />
- <UserMacro
- Name="PythonDirX64"
- Value="$(PythonDir).x64"
- />
- <UserMacro
- Name="IntrospectPythonParam"
- Value="PYTHON=$(PythonDir)\python.exe"
- />
- <UserMacro
- Name="IntrospectPythonParamX64"
- Value="PYTHON=$(PythonDirX64)\python.exe"
- />
-</VisualStudioPropertySheet>
diff --git a/win32/vs9/atk.sln b/win32/vs9/atk.sln
deleted file mode 100644
index 06ed938..0000000
--- a/win32/vs9/atk.sln
+++ /dev/null
@@ -1,49 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 10.00
-# Visual Studio 2008
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "atk", "atk.vcproj", "{86EACD59-F69F-4AAD-854B-AA03D5447360}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "atk-install", "atk-install.vcproj", "{00702787-1566-484D-991F-3E7E459BB909}"
- ProjectSection(ProjectDependencies) = postProject
- {86EACD59-F69F-4AAD-854B-AA03D5447360} = {86EACD59-F69F-4AAD-854B-AA03D5447360}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "atk-introspect", "atk-introspect.vcproj", "{7034D75B-2AC9-4EA6-97A2-DB4F8526EC5A}"
- ProjectSection(ProjectDependencies) = postProject
- {86EACD59-F69F-4AAD-854B-AA03D5447360} = {86EACD59-F69F-4AAD-854B-AA03D5447360}
- {00702787-1566-484D-991F-3E7E459BB909} = {00702787-1566-484D-991F-3E7E459BB909}
- EndProjectSection
-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
- {86EACD59-F69F-4AAD-854B-AA03D5447360}.Debug|Win32.ActiveCfg = Debug|Win32
- {86EACD59-F69F-4AAD-854B-AA03D5447360}.Debug|Win32.Build.0 = Debug|Win32
- {86EACD59-F69F-4AAD-854B-AA03D5447360}.Release|Win32.ActiveCfg = Release|Win32
- {86EACD59-F69F-4AAD-854B-AA03D5447360}.Release|Win32.Build.0 = Release|Win32
- {86EACD59-F69F-4AAD-854B-AA03D5447360}.Debug|x64.ActiveCfg = Debug|x64
- {86EACD59-F69F-4AAD-854B-AA03D5447360}.Debug|x64.Build.0 = Debug|x64
- {86EACD59-F69F-4AAD-854B-AA03D5447360}.Release|x64.ActiveCfg = Release|x64
- {86EACD59-F69F-4AAD-854B-AA03D5447360}.Release|x64.Build.0 = Release|x64
- {00702787-1566-484D-991F-3E7E459BB909}.Debug|Win32.ActiveCfg = Debug|Win32
- {00702787-1566-484D-991F-3E7E459BB909}.Debug|Win32.Build.0 = Debug|Win32
- {00702787-1566-484D-991F-3E7E459BB909}.Release|Win32.ActiveCfg = Release|Win32
- {00702787-1566-484D-991F-3E7E459BB909}.Release|Win32.Build.0 = Release|Win32
- {00702787-1566-484D-991F-3E7E459BB909}.Debug|x64.ActiveCfg = Debug|x64
- {00702787-1566-484D-991F-3E7E459BB909}.Debug|x64.Build.0 = Debug|x64
- {00702787-1566-484D-991F-3E7E459BB909}.Release|x64.ActiveCfg = Release|x64
- {00702787-1566-484D-991F-3E7E459BB909}.Release|x64.Build.0 = Release|x64
- {7034D75B-2AC9-4EA6-97A2-DB4F8526EC5A}.Debug|Win32.ActiveCfg = Debug|Win32
- {7034D75B-2AC9-4EA6-97A2-DB4F8526EC5A}.Release|Win32.ActiveCfg = Release|Win32
- {7034D75B-2AC9-4EA6-97A2-DB4F8526EC5A}.Debug|x64.ActiveCfg = Debug|x64
- {7034D75B-2AC9-4EA6-97A2-DB4F8526EC5A}.Release|x64.ActiveCfg = Release|x64
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
diff --git a/win32/vs9/atk.vcprojin b/win32/vs9/atk.vcprojin
deleted file mode 100644
index a51a747..0000000
--- a/win32/vs9/atk.vcprojin
+++ /dev/null
@@ -1,243 +0,0 @@
-<?xml version="1.0" encoding="big5"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="9.00"
- Name="atk"
- ProjectGUID="{86EACD59-F69F-4AAD-854B-AA03D5447360}"
- RootNamespace="atk"
- Keyword="Win32Proj"
- TargetFrameworkVersion="196613"
- >
- <Platforms>
- <Platform
- Name="Win32"
- />
- <Platform
- Name="x64"
- />
- </Platforms>
- <ToolFiles>
- </ToolFiles>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- ConfigurationType="2"
- InheritedPropertySheets=".\atk-gen-src.vsprops"
- CharacterSet="2"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- PreprocessorDefinitions="_DEBUG;$(AtkDefines)"
- MinimalRebuild="true"
- BasicRuntimeChecks="3"
- RuntimeLibrary="3"
- UsePrecompiledHeader="0"
- WarningLevel="3"
- DebugInformationFormat="4"
- />
- <Tool
- Name="VCLinkerTool"
- OutputFile="$(OutDir)\$(AtkDllPrefix)$(ProjectName)$(AtkDllSuffix).dll"
- LinkIncremental="2"
- IgnoreDefaultLibraryNames=""
- GenerateDebugInformation="true"
- SubSystem="2"
- ImportLibrary="$(OutDir)\$(ProjectName)-$(ApiVersion).lib"
- TargetMachine="1"
- />
- </Configuration>
- <Configuration
- Name="Release|Win32"
- ConfigurationType="2"
- InheritedPropertySheets=".\atk-gen-src.vsprops"
- CharacterSet="2"
- WholeProgramOptimization="1"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCLCompilerTool"
- Optimization="2"
- EnableIntrinsicFunctions="true"
- PreprocessorDefinitions="$(AtkDefines)"
- RuntimeLibrary="2"
- EnableFunctionLevelLinking="true"
- UsePrecompiledHeader="0"
- WarningLevel="3"
- DebugInformationFormat="3"
- />
- <Tool
- Name="VCLinkerTool"
- OutputFile="$(OutDir)\$(AtkDllPrefix)$(ProjectName)$(AtkDllSuffix).dll"
- LinkIncremental="1"
- IgnoreDefaultLibraryNames=""
- GenerateDebugInformation="true"
- SubSystem="2"
- OptimizeReferences="2"
- EnableCOMDATFolding="2"
- ImportLibrary="$(OutDir)\$(ProjectName)-$(ApiVersion).lib"
- TargetMachine="1"
- />
- </Configuration>
- <Configuration
- Name="Debug|x64"
- InheritedPropertySheets=".\atk-gen-src.vsprops"
- ConfigurationType="2"
- CharacterSet="2"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- PreprocessorDefinitions="_DEBUG;$(AtkDefines)"
- MinimalRebuild="true"
- BasicRuntimeChecks="3"
- RuntimeLibrary="3"
- UsePrecompiledHeader="0"
- WarningLevel="3"
- DebugInformationFormat="3"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalDependencies=""
- OutputFile="$(OutDir)\$(AtkDllPrefix)$(ProjectName)$(AtkDllSuffix).dll"
- LinkIncremental="2"
- GenerateDebugInformation="true"
- SubSystem="2"
- ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
- TargetMachine="17"
- />
- </Configuration>
- <Configuration
- Name="Release|x64"
- InheritedPropertySheets=".\atk-gen-src.vsprops"
- ConfigurationType="2"
- CharacterSet="2"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCLCompilerTool"
- PreprocessorDefinitions="$(AtkDefines)"
- RuntimeLibrary="2"
- UsePrecompiledHeader="0"
- WarningLevel="3"
- DebugInformationFormat="3"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalDependencies=""
- OutputFile="$(OutDir)\$(AtkDllPrefix)$(ProjectName)$(AtkDllSuffix).dll"
- LinkIncremental="2"
- GenerateDebugInformation="true"
- SubSystem="2"
- OptimizeReferences="2"
- EnableCOMDATFolding="2"
- ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
- TargetMachine="17"
- />
- </Configuration>
- </Configurations>
- <References>
- </References>
- <Files>
- <Filter
- Name="Sources"
- Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
- UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
- >
-#include "atk.sourcefiles"
- </Filter>
- <Filter
- Name="Headers"
- Filter="h;hpp;hxx;hm;inl;inc;xsd"
- UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
- >
- </Filter>
- <Filter
- Name="Resource Files"
- Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
- UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
- >
- <File RelativePath="..\..\config.h.win32">
- <FileConfiguration Name="Debug|Win32">
- <Tool
- Name="VCCustomBuildTool"
- Description="Copying config.h from config.h.win32..."
- CommandLine="$(GenConfigH)"
- Outputs="..\..\config.h"
- />
- </FileConfiguration>
- <FileConfiguration Name="Release|Win32">
- <Tool
- Name="VCCustomBuildTool"
- Description="Copying config.h from config.h.win32..."
- CommandLine="$(GenConfigH)"
- Outputs="..\..\config.h"
- />
- </FileConfiguration>
- <FileConfiguration Name="Debug|x64">
- <Tool
- Name="VCCustomBuildTool"
- Description="Copying config.h from config.h.win32..."
- CommandLine="$(GenConfigH)"
- Outputs="..\..\config.h"
- />
- </FileConfiguration>
- <FileConfiguration Name="Release|x64">
- <Tool
- Name="VCCustomBuildTool"
- Description="Copying config.h from config.h.win32..."
- CommandLine="$(GenConfigH)"
- Outputs="..\..\config.h"
- />
- </FileConfiguration>
- </File>
- <File RelativePath="..\..\atk\atkmarshal.list">
- <FileConfiguration Name="Debug|Win32">
- <Tool
- Name="VCCustomBuildTool"
- Description="Generating Marshalling Sources..."
- CommandLine="$(GenMarshalSrc)"
- Outputs="..\..\atk\atkmarshal.h;..\..\atk\atkmarshal.c"
- />
- </FileConfiguration>
- <FileConfiguration Name="Release|Win32">
- <Tool
- Name="VCCustomBuildTool"
- Description="Generating Marshalling Sources..."
- CommandLine="$(GenMarshalSrc)"
- Outputs="..\..\atk\atkmarshal.h;..\..\atk\atkmarshal.c"
- />
- </FileConfiguration>
- <FileConfiguration Name="Debug|x64">
- <Tool
- Name="VCCustomBuildTool"
- Description="Generating Marshalling Sources..."
- CommandLine="$(GenMarshalSrcX64)"
- Outputs="..\..\atk\atkmarshal.h;..\..\atk\atkmarshal.c"
- />
- </FileConfiguration>
- <FileConfiguration Name="Release|x64">
- <Tool
- Name="VCCustomBuildTool"
- Description="Generating Marshalling Sources..."
- CommandLine="$(GenMarshalSrcX64)"
- Outputs="..\..\atk\atkmarshal.h;..\..\atk\atkmarshal.c"
- />
- </FileConfiguration>
- </File>
- <File RelativePath="..\..\atk\atk.rc" />
- </Filter>
- </Files>
- <Globals>
- </Globals>
-</VisualStudioProject>