From 7ef38da516f3cf5aa68f03adde27201bfecc482e Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Thu, 18 Sep 2014 17:08:27 +0800 Subject: [PATCH] Overhaul The Visual Studio 2010 Projects Like the Visual Studio 2008 Projects, give the Visual Studio 2010 Projects an overhaul by using property sheets to consolidate commonly-used items, and moving all the projects to MSVC_Net2010, so that they can be more easily maintained. https://bugs.freedesktop.org/show_bug.cgi?id=84030 --- MSVC_Net2010/cairomm-build-defines.props | 37 +++ MSVC_Net2010/cairomm-version-paths.props | 42 ++++ MSVC_Net2010/cairomm.sln | 18 +- MSVC_Net2010/cairomm.vcxproj | 252 ++++++++++++++++++++ MSVC_Net2010/cairomm.vcxproj.filters | 70 ++++++ MSVC_Net2010/cairomm/cairomm.vcxproj | 261 --------------------- MSVC_Net2010/cairomm/cairomm.vcxproj.filters | 164 ------------- .../examples/image-surface/image-surface.vcxproj | 201 ---------------- .../image-surface/image-surface.vcxproj.filters | 22 -- .../examples/pdf-surface/pdf-surface.vcxproj | 201 ---------------- .../pdf-surface/pdf-surface.vcxproj.filters | 22 -- .../examples/ps-surface/ps-surface.vcxproj | 201 ---------------- .../examples/ps-surface/ps-surface.vcxproj.filters | 22 -- .../examples/svg-surface/svg-surface.vcxproj | 201 ---------------- .../svg-surface/svg-surface.vcxproj.filters | 22 -- .../examples/text-rotate/text-rotate.vcxproj | 201 ---------------- .../text-rotate/text-rotate.vcxproj.filters | 22 -- MSVC_Net2010/examples/toy-text/toy-text.vcxproj | 201 ---------------- .../examples/toy-text/toy-text.vcxproj.filters | 22 -- MSVC_Net2010/examples/user-font/user-font.vcxproj | 201 ---------------- .../examples/user-font/user-font.vcxproj.filters | 22 -- MSVC_Net2010/filelist.am | 38 +-- MSVC_Net2010/gendef.vcxproj | 176 ++++++++++++++ MSVC_Net2010/gendef.vcxproj.filters | 20 ++ MSVC_Net2010/gendef/gendef.vcxproj | 181 -------------- MSVC_Net2010/gendef/gendef.vcxproj.filters | 22 -- MSVC_Net2010/image-surface.vcxproj | 188 +++++++++++++++ MSVC_Net2010/image-surface.vcxproj.filters | 20 ++ MSVC_Net2010/pdf-surface.vcxproj | 188 +++++++++++++++ MSVC_Net2010/pdf-surface.vcxproj.filters | 20 ++ MSVC_Net2010/ps-surface.vcxproj | 188 +++++++++++++++ MSVC_Net2010/ps-surface.vcxproj.filters | 20 ++ MSVC_Net2010/svg-surface.vcxproj | 188 +++++++++++++++ MSVC_Net2010/svg-surface.vcxproj.filters | 20 ++ MSVC_Net2010/text-rotate.vcxproj | 188 +++++++++++++++ MSVC_Net2010/text-rotate.vcxproj.filters | 20 ++ MSVC_Net2010/toy-text.vcxproj | 188 +++++++++++++++ MSVC_Net2010/toy-text.vcxproj.filters | 20 ++ MSVC_Net2010/user-font.vcxproj | 188 +++++++++++++++ MSVC_Net2010/user-font.vcxproj.filters | 20 ++ 40 files changed, 2082 insertions(+), 2216 deletions(-) create mode 100644 MSVC_Net2010/cairomm-build-defines.props create mode 100644 MSVC_Net2010/cairomm-version-paths.props create mode 100644 MSVC_Net2010/cairomm.vcxproj create mode 100644 MSVC_Net2010/cairomm.vcxproj.filters delete mode 100644 MSVC_Net2010/cairomm/cairomm.vcxproj delete mode 100644 MSVC_Net2010/cairomm/cairomm.vcxproj.filters delete mode 100644 MSVC_Net2010/examples/image-surface/image-surface.vcxproj delete mode 100644 MSVC_Net2010/examples/image-surface/image-surface.vcxproj.filters delete mode 100644 MSVC_Net2010/examples/pdf-surface/pdf-surface.vcxproj delete mode 100644 MSVC_Net2010/examples/pdf-surface/pdf-surface.vcxproj.filters delete mode 100644 MSVC_Net2010/examples/ps-surface/ps-surface.vcxproj delete mode 100644 MSVC_Net2010/examples/ps-surface/ps-surface.vcxproj.filters delete mode 100644 MSVC_Net2010/examples/svg-surface/svg-surface.vcxproj delete mode 100644 MSVC_Net2010/examples/svg-surface/svg-surface.vcxproj.filters delete mode 100644 MSVC_Net2010/examples/text-rotate/text-rotate.vcxproj delete mode 100644 MSVC_Net2010/examples/text-rotate/text-rotate.vcxproj.filters delete mode 100644 MSVC_Net2010/examples/toy-text/toy-text.vcxproj delete mode 100644 MSVC_Net2010/examples/toy-text/toy-text.vcxproj.filters delete mode 100644 MSVC_Net2010/examples/user-font/user-font.vcxproj delete mode 100644 MSVC_Net2010/examples/user-font/user-font.vcxproj.filters create mode 100644 MSVC_Net2010/gendef.vcxproj create mode 100644 MSVC_Net2010/gendef.vcxproj.filters delete mode 100644 MSVC_Net2010/gendef/gendef.vcxproj delete mode 100644 MSVC_Net2010/gendef/gendef.vcxproj.filters create mode 100644 MSVC_Net2010/image-surface.vcxproj create mode 100644 MSVC_Net2010/image-surface.vcxproj.filters create mode 100644 MSVC_Net2010/pdf-surface.vcxproj create mode 100644 MSVC_Net2010/pdf-surface.vcxproj.filters create mode 100644 MSVC_Net2010/ps-surface.vcxproj create mode 100644 MSVC_Net2010/ps-surface.vcxproj.filters create mode 100644 MSVC_Net2010/svg-surface.vcxproj create mode 100644 MSVC_Net2010/svg-surface.vcxproj.filters create mode 100644 MSVC_Net2010/text-rotate.vcxproj create mode 100644 MSVC_Net2010/text-rotate.vcxproj.filters create mode 100644 MSVC_Net2010/toy-text.vcxproj create mode 100644 MSVC_Net2010/toy-text.vcxproj.filters create mode 100644 MSVC_Net2010/user-font.vcxproj create mode 100644 MSVC_Net2010/user-font.vcxproj.filters diff --git a/MSVC_Net2010/cairomm-build-defines.props b/MSVC_Net2010/cairomm-build-defines.props new file mode 100644 index 0000000..6a26ad4 --- /dev/null +++ b/MSVC_Net2010/cairomm-build-defines.props @@ -0,0 +1,37 @@ + + + + + + + CAIROMM_BUILD + sigc-vc$(VSVer)0-2_0.lib + sigc-vc$(VSVer)0-d-2_0.lib + + + <_PropertySheetDisplayName>glibmmbuilddefinesprops + $(SolutionDir)$(Configuration)\$(PlatformName)\bin\ + $(SolutionDir)$(Configuration)\$(PlatformName)\obj\$(ProjectName)\ + + + + .\cairomm;..;$(GlibEtcInstallRoot)\include\sigc++-2.0;$(GlibEtcInstallRoot)\lib\sigc++-2.0\include;$(GlibEtcInstallRoot)\include;%(AdditionalIncludeDirectories) + msvc_recommended_pragmas.h;%(ForcedIncludeFiles) + + + cairo.lib;%(AdditionalDependencies) + $(GlibEtcInstallRoot)\lib;%(AdditionalLibraryDirectories) + + + + + $(CairoMMBuildDefs) + + + $(CPPDepLibsRelease) + + + $(CPPDepLibsDebug) + + + \ No newline at end of file diff --git a/MSVC_Net2010/cairomm-version-paths.props b/MSVC_Net2010/cairomm-version-paths.props new file mode 100644 index 0000000..5feb09c --- /dev/null +++ b/MSVC_Net2010/cairomm-version-paths.props @@ -0,0 +1,42 @@ + + + + 10 + $(SolutionDir)\..\..\vs$(VSVer)\$(Platform) + $(GlibEtcInstallRoot) + $(SolutionDir)$(Configuration)\$(Platform)\obj\$(ProjectName)\ + 1 + 0 + -vc$(VSVer)0-$(ApiMajorVersion)_$(ApiMinorVersion) + -vc$(VSVer)0-d-$(ApiMajorVersion)_$(ApiMinorVersion) + + + <_PropertySheetDisplayName>glibmmversionpathsprops + + + + $(VSVer) + + + $(GlibEtcInstallRoot) + + + $(CopyDir) + + + $(DefDir) + + + $(ApiMajorVersion) + + + $(ApiMinorVersion) + + + $(ReleaseDllSuffix) + + + $(DebugDllSuffix) + + + \ No newline at end of file diff --git a/MSVC_Net2010/cairomm.sln b/MSVC_Net2010/cairomm.sln index 1e90c05..0be2944 100644 --- a/MSVC_Net2010/cairomm.sln +++ b/MSVC_Net2010/cairomm.sln @@ -1,22 +1,22 @@ Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gendef", "gendef\gendef.vcxproj", "{07324745-C9BE-4D65-B08A-9C88188C0C28}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gendef", "gendef.vcxproj", "{07324745-C9BE-4D65-B08A-9C88188C0C28}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cairomm-1.0", "cairomm\cairomm.vcxproj", "{58B2B53C-C4FF-47FD-817B-095E45B7F7D4}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cairomm", "cairomm.vcxproj", "{58B2B53C-C4FF-47FD-817B-095E45B7F7D4}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "examples_pdf-surface", "examples\pdf-surface\pdf-surface.vcxproj", "{129ECC08-6D30-4884-B824-4AF96EF0A45C}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pdf-surface", "pdf-surface.vcxproj", "{129ECC08-6D30-4884-B824-4AF96EF0A45C}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "examples_ps-surface", "examples\ps-surface\ps-surface.vcxproj", "{CAE46373-7375-4607-AAB7-0EBA8F0E5B55}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ps-surface", "ps-surface.vcxproj", "{CAE46373-7375-4607-AAB7-0EBA8F0E5B55}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "examples_svg-surface", "examples\svg-surface\svg-surface.vcxproj", "{BCA44D2B-1832-41F5-9EE9-FE1F709EE584}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "svg-surface", "svg-surface.vcxproj", "{BCA44D2B-1832-41F5-9EE9-FE1F709EE584}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "examples_text-rotate", "examples\text-rotate\text-rotate.vcxproj", "{F4D455E4-464D-49CC-A120-DB9B8AE0207E}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "text-rotate", "text-rotate.vcxproj", "{F4D455E4-464D-49CC-A120-DB9B8AE0207E}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "examples_image-surface", "examples\image-surface\image-surface.vcxproj", "{7A33DBC5-A523-4E9C-8E13-792AE3B91055}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "image-surface", "image-surface.vcxproj", "{7A33DBC5-A523-4E9C-8E13-792AE3B91055}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "examples_toy-text", "examples\toy-text\toy-text.vcxproj", "{6B6E3E73-0605-41E0-B7F9-1C62BBF92731}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "toy-text", "toy-text.vcxproj", "{6B6E3E73-0605-41E0-B7F9-1C62BBF92731}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "examples_user-font", "examples\user-font\user-font.vcxproj", "{E7C7C350-509B-4091-8929-62E47818C254}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "user-font", "user-font.vcxproj", "{E7C7C350-509B-4091-8929-62E47818C254}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/MSVC_Net2010/cairomm.vcxproj b/MSVC_Net2010/cairomm.vcxproj new file mode 100644 index 0000000..3d71180 --- /dev/null +++ b/MSVC_Net2010/cairomm.vcxproj @@ -0,0 +1,252 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + cairomm + {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} + cairomm + Win32Proj + + + + DynamicLibrary + MultiByte + v100 + + + DynamicLibrary + MultiByte + v100 + + + DynamicLibrary + MultiByte + v100 + + + DynamicLibrary + MultiByte + v100 + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + $(ProjectName)$(ReleaseDllSuffix) + $(ProjectName)$(ReleaseDllSuffix) + $(ProjectName)$(DebugDllSuffix) + $(ProjectName)$(DebugDllSuffix) + + + + Disabled + _DEBUG;$(CairoMMBuildDefs);%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + EditAndContinue + + + Generate cairomm def file + $(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def $(TargetFileName) $(IntDir)*.obj + + + $(CPPDepLibsDebug);%(AdditionalDependencies) + $(OutDir)$(ProjectName)$(DebugDllSuffix).dll + $(IntDir)\$(ProjectName).def + true + false + + + + + + + $(CairoMMBuildDefs);%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + Generate cairomm def file + $(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def $(TargetFileName) $(IntDir)*.obj + + + $(CPPDepLibsRelease);%(AdditionalDependencies) + $(OutDir)$(ProjectName)$(ReleaseDllSuffix).dll + $(IntDir)\$(ProjectName).def + true + true + false + + + + + + + X64 + + + Disabled + _DEBUG;$(CairoMMBuildDefs);%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + ProgramDatabase + + + Generate cairomm def file + $(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def $(TargetFileName) $(IntDir)*.obj + + + $(CPPDepLibsDebug);%(AdditionalDependencies) + $(OutDir)$(ProjectName)$(DebugDllSuffix).dll + $(IntDir)\$(ProjectName).def + true + false + + + MachineX64 + + + + + X64 + + + $(CairoMMBuildDefs);%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + Generate cairomm def file + $(OutDir)\gendef.exe $(DefDir)\$(ProjectName).def $(TargetFileName) $(IntDir)*.obj + + + $(CPPDepLibsRelease);%(AdditionalDependencies) + $(OutDir)$(ProjectName)$(ReleaseDllSuffix).dll + $(IntDir)\$(ProjectName).def + true + true + false + + + MachineX64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {07324745-c9be-4d65-b08a-9c88188c0c28} + false + + + + + + \ No newline at end of file diff --git a/MSVC_Net2010/cairomm.vcxproj.filters b/MSVC_Net2010/cairomm.vcxproj.filters new file mode 100644 index 0000000..424d657 --- /dev/null +++ b/MSVC_Net2010/cairomm.vcxproj.filters @@ -0,0 +1,70 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx + + + + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + Source Files + + + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + Header Files + + + Resource Files + + \ No newline at end of file diff --git a/MSVC_Net2010/cairomm/cairomm.vcxproj b/MSVC_Net2010/cairomm/cairomm.vcxproj deleted file mode 100644 index 0969ad7..0000000 --- a/MSVC_Net2010/cairomm/cairomm.vcxproj +++ /dev/null @@ -1,261 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - cairomm-1.0 - {58B2B53C-C4FF-47FD-817B-095E45B7F7D4} - glibmm - Win32Proj - - - - DynamicLibrary - MultiByte - - - DynamicLibrary - MultiByte - - - DynamicLibrary - MultiByte - - - DynamicLibrary - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - cairomm-vc100-1_0 - cairomm-vc100-1_0 - cairomm-vc100-d-1_0 - cairomm-vc100-d-1_0 - - - - Disabled - .;../..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;CAIROMM_BUILD;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - EditAndContinue - - - Generate cairomm def file - $(SolutionDir)gendef\$(Platform)\$(Configuration)\gendef $(Platform)\$(Configuration)\$(ProjectName).def $(TargetFileName) $(IntDir)*.obj - - - cairo.lib;sigc-vc100-d-2_0.lib;%(AdditionalDependencies) - $(OutDir)cairomm-vc100-d-1_0.dll - $(Platform)\$(Configuration)\$(ProjectName).def - true - false - - - - - - - .;../..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;CAIROMM_BUILD;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - Generate cairomm def file - $(SolutionDir)gendef\$(Platform)\$(Configuration)\gendef $(Platform)\$(Configuration)\$(ProjectName).def $(TargetFileName) $(IntDir)*.obj - - - cairo.lib;sigc-vc100-2_0.lib;%(AdditionalDependencies) - $(OutDir)cairomm-vc100-1_0.dll - $(Platform)\$(Configuration)\$(ProjectName).def - false - - - - - - - X64 - - - Disabled - .;../..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;CAIROMM_BUILD;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - ProgramDatabase - - - Generate cairomm def file - $(SolutionDir)gendef\$(Platform)\$(Configuration)\gendef $(Platform)\$(Configuration)\$(ProjectName).def $(TargetFileName) $(IntDir)*.obj - - - cairo.lib;sigc-vc100-d-2_0.lib;%(AdditionalDependencies) - $(OutDir)cairomm-vc100-d-1_0.dll - $(Platform)\$(Configuration)\$(ProjectName).def - true - false - - - MachineX64 - - - - - X64 - - - .;../..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;CAIROMM_BUILD;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - Generate cairomm def file - $(SolutionDir)gendef\$(Platform)\$(Configuration)\gendef $(Platform)\$(Configuration)\$(ProjectName).def $(TargetFileName) $(IntDir)*.obj - - - cairo.lib;sigc-vc100-2_0.lib;%(AdditionalDependencies) - $(OutDir)cairomm-vc100-1_0.dll - $(Platform)\$(Configuration)\$(ProjectName).def - false - - - MachineX64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {07324745-c9be-4d65-b08a-9c88188c0c28} - false - - - - - - \ No newline at end of file diff --git a/MSVC_Net2010/cairomm/cairomm.vcxproj.filters b/MSVC_Net2010/cairomm/cairomm.vcxproj.filters deleted file mode 100644 index d8a0580..0000000 --- a/MSVC_Net2010/cairomm/cairomm.vcxproj.filters +++ /dev/null @@ -1,164 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/image-surface/image-surface.vcxproj b/MSVC_Net2010/examples/image-surface/image-surface.vcxproj deleted file mode 100644 index 5bb38ca..0000000 --- a/MSVC_Net2010/examples/image-surface/image-surface.vcxproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - examples_image-surface - {7A33DBC5-A523-4E9C-8E13-792AE3B91055} - examples_dispatcher - Win32Proj - - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - EditAndContinue - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX86 - - - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/image-surface/image-surface.vcxproj.filters b/MSVC_Net2010/examples/image-surface/image-surface.vcxproj.filters deleted file mode 100644 index 3e3abc7..0000000 --- a/MSVC_Net2010/examples/image-surface/image-surface.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - - Source Files - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/pdf-surface/pdf-surface.vcxproj b/MSVC_Net2010/examples/pdf-surface/pdf-surface.vcxproj deleted file mode 100644 index d650cce..0000000 --- a/MSVC_Net2010/examples/pdf-surface/pdf-surface.vcxproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - examples_pdf-surface - {129ECC08-6D30-4884-B824-4AF96EF0A45C} - examples_dispatcher - Win32Proj - - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - EditAndContinue - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX86 - - - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/pdf-surface/pdf-surface.vcxproj.filters b/MSVC_Net2010/examples/pdf-surface/pdf-surface.vcxproj.filters deleted file mode 100644 index 573c315..0000000 --- a/MSVC_Net2010/examples/pdf-surface/pdf-surface.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - - Source Files - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/ps-surface/ps-surface.vcxproj b/MSVC_Net2010/examples/ps-surface/ps-surface.vcxproj deleted file mode 100644 index 3f3942d..0000000 --- a/MSVC_Net2010/examples/ps-surface/ps-surface.vcxproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - examples_ps-surface - {CAE46373-7375-4607-AAB7-0EBA8F0E5B55} - examples_dispatcher - Win32Proj - - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - EditAndContinue - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX86 - - - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/ps-surface/ps-surface.vcxproj.filters b/MSVC_Net2010/examples/ps-surface/ps-surface.vcxproj.filters deleted file mode 100644 index eec7fe6..0000000 --- a/MSVC_Net2010/examples/ps-surface/ps-surface.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - - Source Files - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/svg-surface/svg-surface.vcxproj b/MSVC_Net2010/examples/svg-surface/svg-surface.vcxproj deleted file mode 100644 index 0845c01..0000000 --- a/MSVC_Net2010/examples/svg-surface/svg-surface.vcxproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - examples_svg-surface - {BCA44D2B-1832-41F5-9EE9-FE1F709EE584} - examples_dispatcher - Win32Proj - - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - EditAndContinue - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX86 - - - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/svg-surface/svg-surface.vcxproj.filters b/MSVC_Net2010/examples/svg-surface/svg-surface.vcxproj.filters deleted file mode 100644 index 5e8cbfe..0000000 --- a/MSVC_Net2010/examples/svg-surface/svg-surface.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - - Source Files - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/text-rotate/text-rotate.vcxproj b/MSVC_Net2010/examples/text-rotate/text-rotate.vcxproj deleted file mode 100644 index ec6a77a..0000000 --- a/MSVC_Net2010/examples/text-rotate/text-rotate.vcxproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - examples_text-rotate - {F4D455E4-464D-49CC-A120-DB9B8AE0207E} - examples_dispatcher - Win32Proj - - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - EditAndContinue - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX86 - - - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/text-rotate/text-rotate.vcxproj.filters b/MSVC_Net2010/examples/text-rotate/text-rotate.vcxproj.filters deleted file mode 100644 index 1da5605..0000000 --- a/MSVC_Net2010/examples/text-rotate/text-rotate.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - - Source Files - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/toy-text/toy-text.vcxproj b/MSVC_Net2010/examples/toy-text/toy-text.vcxproj deleted file mode 100644 index ab15500..0000000 --- a/MSVC_Net2010/examples/toy-text/toy-text.vcxproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - examples_toy-text - {6B6E3E73-0605-41E0-B7F9-1C62BBF92731} - examples_dispatcher - Win32Proj - - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;_USE_MATH_DEFINES;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - EditAndContinue - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX86 - - - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;_USE_MATH_DEFINES;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;_USE_MATH_DEFINES;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;_USE_MATH_DEFINES;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/toy-text/toy-text.vcxproj.filters b/MSVC_Net2010/examples/toy-text/toy-text.vcxproj.filters deleted file mode 100644 index 8a689fa..0000000 --- a/MSVC_Net2010/examples/toy-text/toy-text.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - - Source Files - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/user-font/user-font.vcxproj b/MSVC_Net2010/examples/user-font/user-font.vcxproj deleted file mode 100644 index c73f088..0000000 --- a/MSVC_Net2010/examples/user-font/user-font.vcxproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - examples_user-font - {E7C7C350-509B-4091-8929-62E47818C254} - examples_dispatcher - Win32Proj - - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - true - - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;_USE_MATH_DEFINES;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - EditAndContinue - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX86 - - - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;_USE_MATH_DEFINES;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;_USE_MATH_DEFINES;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - $(SolutionDir)\cairomm;$(SolutionDir)\..;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;_USE_MATH_DEFINES;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - ProgramDatabase - - - cairo.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).exe - false - Console - true - true - false - - - MachineX64 - - - - - - - - {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} - false - - - - - - \ No newline at end of file diff --git a/MSVC_Net2010/examples/user-font/user-font.vcxproj.filters b/MSVC_Net2010/examples/user-font/user-font.vcxproj.filters deleted file mode 100644 index 5c00f83..0000000 --- a/MSVC_Net2010/examples/user-font/user-font.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - - Source Files - - - \ No newline at end of file diff --git a/MSVC_Net2010/filelist.am b/MSVC_Net2010/filelist.am index 6708cfe..f058ba0 100644 --- a/MSVC_Net2010/filelist.am +++ b/MSVC_Net2010/filelist.am @@ -2,24 +2,26 @@ msvc_net2010_data = README \ cairomm.sln \ - gendef/gendef.vcxproj \ - gendef/gendef.vcxproj.filters \ + cairo-build-defines.props \ + cairo-version-paths.props \ + gendef.vcxproj \ + gendef.vcxproj.filters \ gendef/gendef.cc \ cairomm/cairommconfig.h \ cairomm/cairomm.rc \ - cairomm/cairomm.vcxproj \ - cairomm/cairomm.vcxproj.filters \ - examples/image-surface/image-surface.vcxproj \ - examples/image-surface/image-surface.vcxproj.filters \ - examples/pdf-surface/pdf-surface.vcxproj \ - examples/pdf-surface/pdf-surface.vcxproj.filters \ - examples/ps-surface/ps-surface.vcxproj \ - examples/ps-surface/ps-surface.vcxproj.filters \ - examples/svg-surface/svg-surface.vcxproj \ - examples/svg-surface/svg-surface.vcxproj.filters \ - examples/text-rotate/text-rotate.vcxproj \ - examples/text-rotate/text-rotate.vcxproj.filters \ - examples/toy-text/toy-text.vcxproj \ - examples/toy-text/toy-text.vcxproj.filters \ - examples/user-font/user-font.vcxproj \ - examples/user-font/user-font.vcxproj.filters + cairomm.vcxproj \ + cairomm.vcxproj.filters \ + image-surface.vcxproj \ + image-surface.vcxproj.filters \ + pdf-surface.vcxproj \ + pdf-surface.vcxproj.filters \ + ps-surface.vcxproj \ + ps-surface.vcxproj.filters \ + svg-surface.vcxproj \ + svg-surface.vcxproj.filters \ + text-rotate.vcxproj \ + text-rotate.vcxproj.filters \ + toy-text.vcxproj \ + toy-text.vcxproj.filters \ + user-font.vcxproj \ + user-font.vcxproj.filters diff --git a/MSVC_Net2010/gendef.vcxproj b/MSVC_Net2010/gendef.vcxproj new file mode 100644 index 0000000..ff860d8 --- /dev/null +++ b/MSVC_Net2010/gendef.vcxproj @@ -0,0 +1,176 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {07324745-C9BE-4D65-B08A-9C88188C0C28} + Win32Proj + + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + + + + + + + + + + + + + + + + + + + + + true + true + false + false + true + true + false + false + + + + Disabled + %(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebug + + + Level3 + EditAndContinue + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX86 + + + + + %(PreprocessorDefinitions) + MultiThreaded + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX86 + + + + + X64 + + + Disabled + %(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebug + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX64 + + + + + X64 + + + %(PreprocessorDefinitions) + MultiThreaded + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX64 + + + + + + + + + \ No newline at end of file diff --git a/MSVC_Net2010/gendef.vcxproj.filters b/MSVC_Net2010/gendef.vcxproj.filters new file mode 100644 index 0000000..e81fda2 --- /dev/null +++ b/MSVC_Net2010/gendef.vcxproj.filters @@ -0,0 +1,20 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx + + + + Source Files + + \ No newline at end of file diff --git a/MSVC_Net2010/gendef/gendef.vcxproj b/MSVC_Net2010/gendef/gendef.vcxproj deleted file mode 100644 index b05d0f6..0000000 --- a/MSVC_Net2010/gendef/gendef.vcxproj +++ /dev/null @@ -1,181 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {07324745-C9BE-4D65-B08A-9C88188C0C28} - Win32Proj - - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - false - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - false - - - - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - - - $(OutDir)gendef.exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX86 - - - - - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - - - $(OutDir)gendef.exe - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - - - $(OutDir)gendef.exe - true - $(OutDir)$(TargetName).pdb - Console - false - - - MachineX64 - - - - - X64 - - - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - - - $(OutDir)gendef.exe - true - Console - true - true - false - - - MachineX64 - - - - - - - - - \ No newline at end of file diff --git a/MSVC_Net2010/gendef/gendef.vcxproj.filters b/MSVC_Net2010/gendef/gendef.vcxproj.filters deleted file mode 100644 index ec3f611..0000000 --- a/MSVC_Net2010/gendef/gendef.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - - Source Files - - - \ No newline at end of file diff --git a/MSVC_Net2010/image-surface.vcxproj b/MSVC_Net2010/image-surface.vcxproj new file mode 100644 index 0000000..a93f1e0 --- /dev/null +++ b/MSVC_Net2010/image-surface.vcxproj @@ -0,0 +1,188 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + image-surface + {7A33DBC5-A523-4E9C-8E13-792AE3B91055} + imagesurface + Win32Proj + + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + + + + + + + + + + + + + + + + + + + + + true + true + false + true + true + true + false + true + + + + Disabled + %(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + EditAndContinue + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX86 + + + + + %(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX86 + + + + + X64 + + + Disabled + %(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX64 + + + + + X64 + + + %(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX64 + + + + + + + + {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} + false + + + + + + \ No newline at end of file diff --git a/MSVC_Net2010/image-surface.vcxproj.filters b/MSVC_Net2010/image-surface.vcxproj.filters new file mode 100644 index 0000000..544aeee --- /dev/null +++ b/MSVC_Net2010/image-surface.vcxproj.filters @@ -0,0 +1,20 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx + + + + Source Files + + \ No newline at end of file diff --git a/MSVC_Net2010/pdf-surface.vcxproj b/MSVC_Net2010/pdf-surface.vcxproj new file mode 100644 index 0000000..be42d08 --- /dev/null +++ b/MSVC_Net2010/pdf-surface.vcxproj @@ -0,0 +1,188 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + pdf-surface + {129ECC08-6D30-4884-B824-4AF96EF0A45C} + pdfsurface + Win32Proj + + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + + + + + + + + + + + + + + + + + + + + + true + true + false + true + true + true + false + true + + + + Disabled + %(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + EditAndContinue + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX86 + + + + + %(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX86 + + + + + X64 + + + Disabled + %(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX64 + + + + + X64 + + + %(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX64 + + + + + + + + {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} + false + + + + + + \ No newline at end of file diff --git a/MSVC_Net2010/pdf-surface.vcxproj.filters b/MSVC_Net2010/pdf-surface.vcxproj.filters new file mode 100644 index 0000000..ee80726 --- /dev/null +++ b/MSVC_Net2010/pdf-surface.vcxproj.filters @@ -0,0 +1,20 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx + + + + Source Files + + \ No newline at end of file diff --git a/MSVC_Net2010/ps-surface.vcxproj b/MSVC_Net2010/ps-surface.vcxproj new file mode 100644 index 0000000..4228c2b --- /dev/null +++ b/MSVC_Net2010/ps-surface.vcxproj @@ -0,0 +1,188 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + ps-surface + {CAE46373-7375-4607-AAB7-0EBA8F0E5B55} + pssurface + Win32Proj + + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + + + + + + + + + + + + + + + + + + + + + true + true + false + true + true + true + false + true + + + + Disabled + %(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + EditAndContinue + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX86 + + + + + %(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX86 + + + + + X64 + + + Disabled + %(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX64 + + + + + X64 + + + %(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX64 + + + + + + + + {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} + false + + + + + + \ No newline at end of file diff --git a/MSVC_Net2010/ps-surface.vcxproj.filters b/MSVC_Net2010/ps-surface.vcxproj.filters new file mode 100644 index 0000000..0b74b80 --- /dev/null +++ b/MSVC_Net2010/ps-surface.vcxproj.filters @@ -0,0 +1,20 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx + + + + Source Files + + \ No newline at end of file diff --git a/MSVC_Net2010/svg-surface.vcxproj b/MSVC_Net2010/svg-surface.vcxproj new file mode 100644 index 0000000..4356d48 --- /dev/null +++ b/MSVC_Net2010/svg-surface.vcxproj @@ -0,0 +1,188 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + svg-surface + {BCA44D2B-1832-41F5-9EE9-FE1F709EE584} + svgsurface + Win32Proj + + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + + + + + + + + + + + + + + + + + + + + + true + true + false + true + true + true + false + true + + + + Disabled + %(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + EditAndContinue + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX86 + + + + + %(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX86 + + + + + X64 + + + Disabled + %(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX64 + + + + + X64 + + + %(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX64 + + + + + + + + {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} + false + + + + + + \ No newline at end of file diff --git a/MSVC_Net2010/svg-surface.vcxproj.filters b/MSVC_Net2010/svg-surface.vcxproj.filters new file mode 100644 index 0000000..11bd758 --- /dev/null +++ b/MSVC_Net2010/svg-surface.vcxproj.filters @@ -0,0 +1,20 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx + + + + Source Files + + \ No newline at end of file diff --git a/MSVC_Net2010/text-rotate.vcxproj b/MSVC_Net2010/text-rotate.vcxproj new file mode 100644 index 0000000..50e88b9 --- /dev/null +++ b/MSVC_Net2010/text-rotate.vcxproj @@ -0,0 +1,188 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + text-rotate + {F4D455E4-464D-49CC-A120-DB9B8AE0207E} + textrotate + Win32Proj + + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + + + + + + + + + + + + + + + + + + + + + true + true + false + true + true + true + false + true + + + + Disabled + %(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + EditAndContinue + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX86 + + + + + %(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX86 + + + + + X64 + + + Disabled + %(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX64 + + + + + X64 + + + %(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX64 + + + + + + + + {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} + false + + + + + + \ No newline at end of file diff --git a/MSVC_Net2010/text-rotate.vcxproj.filters b/MSVC_Net2010/text-rotate.vcxproj.filters new file mode 100644 index 0000000..5bd8ac4 --- /dev/null +++ b/MSVC_Net2010/text-rotate.vcxproj.filters @@ -0,0 +1,20 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx + + + + Source Files + + \ No newline at end of file diff --git a/MSVC_Net2010/toy-text.vcxproj b/MSVC_Net2010/toy-text.vcxproj new file mode 100644 index 0000000..0ee8df2 --- /dev/null +++ b/MSVC_Net2010/toy-text.vcxproj @@ -0,0 +1,188 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + toy-text + {6B6E3E73-0605-41E0-B7F9-1C62BBF92731} + toytext + Win32Proj + + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + + + + + + + + + + + + + + + + + + + + + true + true + false + true + true + true + false + true + + + + Disabled + _USE_MATH_DEFINES;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + EditAndContinue + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX86 + + + + + _USE_MATH_DEFINES;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX86 + + + + + X64 + + + Disabled + _USE_MATH_DEFINES;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX64 + + + + + X64 + + + _USE_MATH_DEFINES;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX64 + + + + + + + + {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} + false + + + + + + \ No newline at end of file diff --git a/MSVC_Net2010/toy-text.vcxproj.filters b/MSVC_Net2010/toy-text.vcxproj.filters new file mode 100644 index 0000000..f0889c3 --- /dev/null +++ b/MSVC_Net2010/toy-text.vcxproj.filters @@ -0,0 +1,20 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx + + + + Source Files + + \ No newline at end of file diff --git a/MSVC_Net2010/user-font.vcxproj b/MSVC_Net2010/user-font.vcxproj new file mode 100644 index 0000000..3d3d3a4 --- /dev/null +++ b/MSVC_Net2010/user-font.vcxproj @@ -0,0 +1,188 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + user-font + {E7C7C350-509B-4091-8929-62E47818C254} + userfont + Win32Proj + + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + + + + + + + + + + + + + + + + + + + + + true + true + false + true + true + true + false + true + + + + Disabled + _USE_MATH_DEFINES;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + EditAndContinue + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX86 + + + + + _USE_MATH_DEFINES;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX86 + + + + + X64 + + + Disabled + _USE_MATH_DEFINES;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + $(OutDir)$(TargetName).pdb + Console + false + + + MachineX64 + + + + + X64 + + + _USE_MATH_DEFINES;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + $(OutDir)$(ProjectName).exe + true + Console + true + true + false + + + MachineX64 + + + + + + + + {58b2b53c-c4ff-47fd-817b-095e45b7f7d4} + false + + + + + + \ No newline at end of file diff --git a/MSVC_Net2010/user-font.vcxproj.filters b/MSVC_Net2010/user-font.vcxproj.filters new file mode 100644 index 0000000..fe7653f --- /dev/null +++ b/MSVC_Net2010/user-font.vcxproj.filters @@ -0,0 +1,20 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx + + + + Source Files + + \ No newline at end of file -- 1.8.4.msysgit.0