From 954847fca4514adbc584464abbf517af2d56fda9 Mon Sep 17 00:00:00 2001 From: gigaherz Date: Wed, 14 Apr 2010 19:44:04 +0000 Subject: [PATCH] Initial work on vs2010 project files for PCSX2 and plugins. The *null projects don't build, and neither do ZZOgl or ZeroSPU2. Pcsx2 project has some issues with Resources' custom build steps not being run. Only Debug target tested. Needs work before it's usable. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2843 96395faa-99c1-11dd-bbfe-3dabce05a288 --- 3rdparty/SoundTouch/SoundTouch.vcxproj | 111 + .../SoundTouch/SoundTouch.vcxproj.filters | 83 + 3rdparty/bzip2/bzip2.vcxproj | 90 + 3rdparty/bzip2/bzip2.vcxproj.filters | 44 + 3rdparty/glew/glew_static.vcxproj | 106 + 3rdparty/glew/glew_static.vcxproj.filters | 34 + 3rdparty/libjpeg/libjpeg.vcxproj | 162 ++ 3rdparty/libjpeg/libjpeg.vcxproj.filters | 184 ++ .../portaudio/build/msvc/portaudio.vcxproj | 640 +++++ .../build/msvc/portaudio.vcxproj.filters | 167 ++ 3rdparty/w32pthreads/pthreads.vcxproj | 295 ++- 3rdparty/w32pthreads/pthreads.vcxproj.filters | 437 ++- 3rdparty/w32pthreads/pthreads_lib.vcxproj | 644 +++++ .../w32pthreads/pthreads_lib.vcxproj.filters | 389 +++ 3rdparty/wxWidgets/build/msw/wx_adv.vcxproj | 227 ++ .../build/msw/wx_adv.vcxproj.filters | 250 ++ 3rdparty/wxWidgets/build/msw/wx_base.vcxproj | 386 +++ .../build/msw/wx_base.vcxproj.filters | 689 +++++ .../wxWidgets/build/msw/wx_config.vcxproj | 96 + .../build/msw/wx_config.vcxproj.filters | 30 + 3rdparty/wxWidgets/build/msw/wx_core.vcxproj | 1512 +++++++++++ .../build/msw/wx_core.vcxproj.filters | 2339 +++++++++++++++++ 3rdparty/zlib/zlib.vcxproj | 100 +- 3rdparty/zlib/zlib.vcxproj.filters | 97 +- common/build/Utilities/utilities.vcxproj | 190 ++ .../build/Utilities/utilities.vcxproj.filters | 204 ++ common/build/x86emitter/x86emitter.vcxproj | 158 ++ .../x86emitter/x86emitter.vcxproj.filters | 161 ++ pcsx2_suite_2010.sln | 1024 +++++++- plugins/CDVDiso/src/Windows/CDVDiso.vcxproj | 162 ++ .../src/Windows/CDVDiso.vcxproj.filters | 50 + plugins/CDVDnull/Windows/CDVDnull.vcxproj | 72 + .../CDVDnull/Windows/CDVDnull.vcxproj.filters | 24 + plugins/CDVDolio/cdvd.vcxproj | 489 +++- plugins/CDVDolio/cdvd.vcxproj.filters | 24 +- plugins/FWnull/Windows/FWnull.vcxproj | 88 + plugins/FWnull/Windows/FWnull.vcxproj.filters | 38 + plugins/GSdx/GSdx.vcxproj | 1858 ++++++++----- plugins/GSdx/GSdx.vcxproj.filters | 844 +++--- plugins/GSdx/GSdx_vs2008.vcproj | 18 +- plugins/GSnull/Windows/GSnull.vcxproj | 104 + plugins/GSnull/Windows/GSnull.vcxproj.filters | 72 + plugins/LilyPad/LilyPad.vcxproj | 501 ++++ plugins/LilyPad/LilyPad.vcxproj.filters | 151 ++ plugins/PadNull/Windows/PadNull.vcxproj | 105 + .../PadNull/Windows/PadNull.vcxproj.filters | 52 + plugins/SSSPSXPAD/PadSSSPSX.vcxproj | 104 + plugins/SSSPSXPAD/PadSSSPSX.vcxproj.filters | 40 + plugins/USBnull/Windows/USBnull.vcxproj | 88 + .../USBnull/Windows/USBnull.vcxproj.filters | 38 + plugins/cdvdGigaherz/src/CDVD.h | 6 +- plugins/cdvdGigaherz/src/FileStream.cpp | 133 + plugins/cdvdGigaherz/src/FileStream.h | 51 + plugins/cdvdGigaherz/src/ReaderModules.h | 8 +- .../src/Windows/cdvdGigaherz.vcxproj | 132 + .../src/Windows/cdvdGigaherz.vcxproj.filters | 88 + .../src/Windows/cdvdGigaherz2008.vcproj | 10 +- plugins/dev9null/Windows/DEV9null.vcxproj | 100 + .../dev9null/Windows/DEV9null.vcxproj.filters | 26 + plugins/spu2-x/src/Windows/Spu2-X.vcxproj | 571 ++++ .../spu2-x/src/Windows/Spu2-X.vcxproj.filters | 302 +++ plugins/xpad/xpad.vcxproj | 493 +++- plugins/xpad/xpad.vcxproj.filters | 28 +- plugins/zerogs/dx/Windows/zerogs.vcxproj | 194 ++ .../zerogs/dx/Windows/zerogs.vcxproj.filters | 106 + plugins/zerospu2/Windows/ZeroSPU2.vcxproj | 158 ++ .../zerospu2/Windows/ZeroSPU2.vcxproj.filters | 71 + .../zzogl-pg/opengl/Win32/zerogsogl.vcxproj | 205 ++ .../opengl/Win32/zerogsogl.vcxproj.filters | 175 ++ tools/bin2cpp/bin2c.vcxproj | 28 +- tools/bin2cpp/bin2c.vcxproj.filters | 22 + 71 files changed, 17179 insertions(+), 1499 deletions(-) create mode 100644 3rdparty/SoundTouch/SoundTouch.vcxproj create mode 100644 3rdparty/SoundTouch/SoundTouch.vcxproj.filters create mode 100644 3rdparty/bzip2/bzip2.vcxproj create mode 100644 3rdparty/bzip2/bzip2.vcxproj.filters create mode 100644 3rdparty/glew/glew_static.vcxproj create mode 100644 3rdparty/glew/glew_static.vcxproj.filters create mode 100644 3rdparty/libjpeg/libjpeg.vcxproj create mode 100644 3rdparty/libjpeg/libjpeg.vcxproj.filters create mode 100644 3rdparty/portaudio/build/msvc/portaudio.vcxproj create mode 100644 3rdparty/portaudio/build/msvc/portaudio.vcxproj.filters create mode 100644 3rdparty/w32pthreads/pthreads_lib.vcxproj create mode 100644 3rdparty/w32pthreads/pthreads_lib.vcxproj.filters create mode 100644 3rdparty/wxWidgets/build/msw/wx_adv.vcxproj create mode 100644 3rdparty/wxWidgets/build/msw/wx_adv.vcxproj.filters create mode 100644 3rdparty/wxWidgets/build/msw/wx_base.vcxproj create mode 100644 3rdparty/wxWidgets/build/msw/wx_base.vcxproj.filters create mode 100644 3rdparty/wxWidgets/build/msw/wx_config.vcxproj create mode 100644 3rdparty/wxWidgets/build/msw/wx_config.vcxproj.filters create mode 100644 3rdparty/wxWidgets/build/msw/wx_core.vcxproj create mode 100644 3rdparty/wxWidgets/build/msw/wx_core.vcxproj.filters create mode 100644 common/build/Utilities/utilities.vcxproj create mode 100644 common/build/Utilities/utilities.vcxproj.filters create mode 100644 common/build/x86emitter/x86emitter.vcxproj create mode 100644 common/build/x86emitter/x86emitter.vcxproj.filters create mode 100644 plugins/CDVDiso/src/Windows/CDVDiso.vcxproj create mode 100644 plugins/CDVDiso/src/Windows/CDVDiso.vcxproj.filters create mode 100644 plugins/CDVDnull/Windows/CDVDnull.vcxproj create mode 100644 plugins/CDVDnull/Windows/CDVDnull.vcxproj.filters create mode 100644 plugins/FWnull/Windows/FWnull.vcxproj create mode 100644 plugins/FWnull/Windows/FWnull.vcxproj.filters create mode 100644 plugins/GSnull/Windows/GSnull.vcxproj create mode 100644 plugins/GSnull/Windows/GSnull.vcxproj.filters create mode 100644 plugins/LilyPad/LilyPad.vcxproj create mode 100644 plugins/LilyPad/LilyPad.vcxproj.filters create mode 100644 plugins/PadNull/Windows/PadNull.vcxproj create mode 100644 plugins/PadNull/Windows/PadNull.vcxproj.filters create mode 100644 plugins/SSSPSXPAD/PadSSSPSX.vcxproj create mode 100644 plugins/SSSPSXPAD/PadSSSPSX.vcxproj.filters create mode 100644 plugins/USBnull/Windows/USBnull.vcxproj create mode 100644 plugins/USBnull/Windows/USBnull.vcxproj.filters create mode 100644 plugins/cdvdGigaherz/src/FileStream.cpp create mode 100644 plugins/cdvdGigaherz/src/FileStream.h create mode 100644 plugins/cdvdGigaherz/src/Windows/cdvdGigaherz.vcxproj create mode 100644 plugins/cdvdGigaherz/src/Windows/cdvdGigaherz.vcxproj.filters create mode 100644 plugins/dev9null/Windows/DEV9null.vcxproj create mode 100644 plugins/dev9null/Windows/DEV9null.vcxproj.filters create mode 100644 plugins/spu2-x/src/Windows/Spu2-X.vcxproj create mode 100644 plugins/spu2-x/src/Windows/Spu2-X.vcxproj.filters create mode 100644 plugins/zerogs/dx/Windows/zerogs.vcxproj create mode 100644 plugins/zerogs/dx/Windows/zerogs.vcxproj.filters create mode 100644 plugins/zerospu2/Windows/ZeroSPU2.vcxproj create mode 100644 plugins/zerospu2/Windows/ZeroSPU2.vcxproj.filters create mode 100644 plugins/zzogl-pg/opengl/Win32/zerogsogl.vcxproj create mode 100644 plugins/zzogl-pg/opengl/Win32/zerogsogl.vcxproj.filters create mode 100644 tools/bin2cpp/bin2c.vcxproj.filters diff --git a/3rdparty/SoundTouch/SoundTouch.vcxproj b/3rdparty/SoundTouch/SoundTouch.vcxproj new file mode 100644 index 0000000000..70aef86057 --- /dev/null +++ b/3rdparty/SoundTouch/SoundTouch.vcxproj @@ -0,0 +1,111 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D} + SoundTouch + + + + StaticLibrary + MultiByte + true + + + StaticLibrary + MultiByte + true + + + StaticLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + Level3 + + + + + Level3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/3rdparty/SoundTouch/SoundTouch.vcxproj.filters b/3rdparty/SoundTouch/SoundTouch.vcxproj.filters new file mode 100644 index 0000000000..aff33f582a --- /dev/null +++ b/3rdparty/SoundTouch/SoundTouch.vcxproj.filters @@ -0,0 +1,83 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + + + 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 + + + \ No newline at end of file diff --git a/3rdparty/bzip2/bzip2.vcxproj b/3rdparty/bzip2/bzip2.vcxproj new file mode 100644 index 0000000000..9d78f6fb12 --- /dev/null +++ b/3rdparty/bzip2/bzip2.vcxproj @@ -0,0 +1,90 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + {F4EB4AB2-C595-4B05-8BC0-059024BC796C} + bzip2 + + + + StaticLibrary + MultiByte + false + + + StaticLibrary + MultiByte + true + + + StaticLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/3rdparty/bzip2/bzip2.vcxproj.filters b/3rdparty/bzip2/bzip2.vcxproj.filters new file mode 100644 index 0000000000..0b0fa1a2f0 --- /dev/null +++ b/3rdparty/bzip2/bzip2.vcxproj.filters @@ -0,0 +1,44 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/3rdparty/glew/glew_static.vcxproj b/3rdparty/glew/glew_static.vcxproj new file mode 100644 index 0000000000..0803e36390 --- /dev/null +++ b/3rdparty/glew/glew_static.vcxproj @@ -0,0 +1,106 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + glew_static + {067D7863-393B-494F-B296-4A8853EB3D1D} + glew_static + + + + StaticLibrary + MultiByte + false + + + StaticLibrary + MultiByte + true + + + StaticLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + $(SvnRootDir)\3rdparty\;%(AdditionalIncludeDirectories) + GLEW_STATIC;%(PreprocessorDefinitions) + + + + + $(SvnRootDir)\3rdparty\;%(AdditionalIncludeDirectories) + GLEW_STATIC;%(PreprocessorDefinitions) + Level3 + + + + + $(SvnRootDir)\3rdparty\;%(AdditionalIncludeDirectories) + GLEW_STATIC;%(PreprocessorDefinitions) + Level3 + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/3rdparty/glew/glew_static.vcxproj.filters b/3rdparty/glew/glew_static.vcxproj.filters new file mode 100644 index 0000000000..e5f1088ac0 --- /dev/null +++ b/3rdparty/glew/glew_static.vcxproj.filters @@ -0,0 +1,34 @@ + + + + + {129c7755-0de4-491c-8d9b-5ac6818ba2d4} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {58026107-4ea5-49f8-ad93-b622a2b76b6b} + h;hpp;hxx;hm;inl + + + {038b8130-ae77-4d1c-9f32-13548838b97e} + + + + + Source Files + + + + + Header Files + + + Header Files + + + + + Resources + + + \ No newline at end of file diff --git a/3rdparty/libjpeg/libjpeg.vcxproj b/3rdparty/libjpeg/libjpeg.vcxproj new file mode 100644 index 0000000000..801b2de946 --- /dev/null +++ b/3rdparty/libjpeg/libjpeg.vcxproj @@ -0,0 +1,162 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + libjpeg7 + {BC236261-77E8-4567-8D09-45CD02965EB6} + libjpeg + Win32Proj + + + + StaticLibrary + Unicode + false + + + StaticLibrary + Unicode + true + + + StaticLibrary + Unicode + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/3rdparty/libjpeg/libjpeg.vcxproj.filters b/3rdparty/libjpeg/libjpeg.vcxproj.filters new file mode 100644 index 0000000000..5ed8601634 --- /dev/null +++ b/3rdparty/libjpeg/libjpeg.vcxproj.filters @@ -0,0 +1,184 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + + + 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 + + + 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 + + + Source Files + + + Source Files + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + + + + + \ No newline at end of file diff --git a/3rdparty/portaudio/build/msvc/portaudio.vcxproj b/3rdparty/portaudio/build/msvc/portaudio.vcxproj new file mode 100644 index 0000000000..aaf0e18f6b --- /dev/null +++ b/3rdparty/portaudio/build/msvc/portaudio.vcxproj @@ -0,0 +1,640 @@ + + + + + Debug (NO ASIO) + Win32 + + + Debug (NO ASIO) + x64 + + + Debug + Win32 + + + Debug + x64 + + + Release (NO ASIO) + Win32 + + + Release (NO ASIO) + x64 + + + Release + Win32 + + + Release + x64 + + + + {0A18A071-125E-442F-AFF7-A3F68ABECF99} + portaudio + + + + StaticLibrary + false + + + StaticLibrary + false + + + StaticLibrary + false + + + StaticLibrary + false + + + DynamicLibrary + false + + + DynamicLibrary + false + + + DynamicLibrary + false + + + DynamicLibrary + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + false + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + true + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + false + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + true + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release_x86/portaudio.tlb + + + + + OnlyExplicitInline + ..\..\src\common;..\..\include;.\;..\..\src\os\win;%(AdditionalIncludeDirectories) + _USRDLL;PA_ENABLE_DEBUG_OUTPUT;_CRT_SECURE_NO_DEPRECATE;PAWIN_USE_WDMKS_DEVICE_INFO;%(PreprocessorDefinitions) + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + $(Platform)\$(Configuration)\portaudio.bsc + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release_x86/portaudio.tlb + + + + + MaxSpeed + OnlyExplicitInline + ..\..\src\common;..\..\include;.\;..\..\src\os\win;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_USRDLL;PA_ENABLE_DEBUG_OUTPUT;_CRT_SECURE_NO_DEPRECATE;PAWIN_USE_WDMKS_DEVICE_INFO;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + $(Platform)\$(Configuration)\portaudio.pch + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + Level3 + true + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + ksuser.lib;%(AdditionalDependencies) + $(Platform)\$(Configuration)\portaudio_x64.dll + true + .\portaudio.def + $(Platform)\$(Configuration)/portaudio_x64.pdb + false + + + $(Platform)\$(Configuration)/portaudio_x64.lib + MachineX64 + + + true + $(Platform)\$(Configuration)\portaudio_x64.bsc + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug_x86/portaudio.tlb + + + + + ..\..\src\common;..\..\include;.\;..\..\src\os\win;%(AdditionalIncludeDirectories) + _DEBUG;_USRDLL;PA_ENABLE_DEBUG_OUTPUT;_CRT_SECURE_NO_DEPRECATE;PAWIN_USE_WDMKS_DEVICE_INFO;%(PreprocessorDefinitions) + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + $(Platform)\$(Configuration)\portaudio.bsc + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug_x86/portaudio.tlb + + + + + Disabled + ..\..\src\common;..\..\include;.\;..\..\src\os\win;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_USRDLL;PA_ENABLE_DEBUG_OUTPUT;_CRT_SECURE_NO_DEPRECATE;PAWIN_USE_WDMKS_DEVICE_INFO;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + $(Platform)\$(Configuration)\portaudio.pch + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + Level3 + true + ProgramDatabase + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + ksuser.lib;%(AdditionalDependencies) + $(Platform)\$(Configuration)\portaudio_x64.dll + true + .\portaudio.def + true + $(Platform)\$(Configuration)/portaudio_x64.pdb + false + + + $(Platform)\$(Configuration)\portaudio_x64.lib + MachineX64 + + + true + $(Platform)\$(Configuration)/portaudio_x64.bsc + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release_x86/portaudio.tlb + + + + + OnlyExplicitInline + ..\..\src\common;..\..\include;.\;..\..\src\os\win;%(AdditionalIncludeDirectories) + _USRDLL;PA_ENABLE_DEBUG_OUTPUT;_CRT_SECURE_NO_DEPRECATE;PAWIN_USE_WDMKS_DEVICE_INFO;PA_NO_ASIO;%(PreprocessorDefinitions) + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + $(Platform)\$(Configuration)\portaudio.bsc + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release_x86/portaudio.tlb + + + + + MaxSpeed + OnlyExplicitInline + ..\..\src\common;..\..\include;.\;..\..\src\os\win;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_USRDLL;PA_ENABLE_DEBUG_OUTPUT;_CRT_SECURE_NO_DEPRECATE;PAWIN_USE_WDMKS_DEVICE_INFO;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + $(Platform)\$(Configuration)\portaudio.pch + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + Level3 + true + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + ksuser.lib;%(AdditionalDependencies) + $(Platform)\$(Configuration)\portaudio_x64.dll + true + .\portaudio.def + $(Platform)\$(Configuration)/portaudio_x64.pdb + false + + + $(Platform)\$(Configuration)/portaudio_x64.lib + MachineX64 + + + true + $(Platform)\$(Configuration)\portaudio_x64.bsc + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug_x86/portaudio.tlb + + + + + ..\..\src\common;..\..\include;.\;..\..\src\os\win;%(AdditionalIncludeDirectories) + _DEBUG;_USRDLL;PA_ENABLE_DEBUG_OUTPUT;_CRT_SECURE_NO_DEPRECATE;PAWIN_USE_WDMKS_DEVICE_INFO;PA_NO_ASIO;%(PreprocessorDefinitions) + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + $(Platform)\$(Configuration)\portaudio.bsc + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug_x86/portaudio.tlb + + + + + Disabled + ..\..\src\common;..\..\include;.\;..\..\src\os\win;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_USRDLL;PA_ENABLE_DEBUG_OUTPUT;_CRT_SECURE_NO_DEPRECATE;PAWIN_USE_WDMKS_DEVICE_INFO;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + $(Platform)\$(Configuration)\portaudio.pch + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + Level3 + true + ProgramDatabase + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + ksuser.lib;%(AdditionalDependencies) + $(Platform)\$(Configuration)\portaudio_x64.dll + true + .\portaudio.def + true + $(Platform)\$(Configuration)/portaudio_x64.pdb + false + + + $(Platform)\$(Configuration)\portaudio_x64.lib + MachineX64 + + + true + $(Platform)\$(Configuration)/portaudio_x64.bsc + + + + + + + + + + + + + + + + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + ..\..\src\hostapi\asio\ASIOSDK\host;..\..\src\hostapi\asio\ASIOSDK\host\pc;..\..\src\hostapi\asio\ASIOSDK\common;%(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/3rdparty/portaudio/build/msvc/portaudio.vcxproj.filters b/3rdparty/portaudio/build/msvc/portaudio.vcxproj.filters new file mode 100644 index 0000000000..6d491c1b34 --- /dev/null +++ b/3rdparty/portaudio/build/msvc/portaudio.vcxproj.filters @@ -0,0 +1,167 @@ + + + + + {5cc0e5d8-728d-40a7-8083-5b983fd1aee7} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {a858f4ea-8d6b-4443-90f9-c2dd3b140b6b} + + + {0ce101a1-ed76-41ee-82e4-64060016158b} + + + {add87864-e960-4687-b000-d88213e2b2d4} + + + {6766d178-09d3-4194-9e43-0311d503035c} + + + {07c0df04-c6c4-4eb9-b645-d56ade6252fd} + + + {ee059c3c-2663-474c-bc48-385c1db73147} + + + {1782b100-f22f-4c73-812d-a3c654dc9825} + + + {1af05f1a-04d9-40b1-890c-1a34a9d0192e} + + + {b6f829a2-cf78-4f0e-b051-8fccf66c5213} + + + {b10684c7-978c-4840-be31-71d29889162c} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + {78689f06-8c26-4417-93e2-b809a8c41ee7} + h;hpp;hxx;hm;inl + + + + + Source Files\common + + + Source Files\common + + + Source Files\common + + + Source Files\common + + + Source Files\common + + + Source Files\common + + + Source Files\common + + + Source Files\common + + + Source Files\common + + + Source Files\common + + + Source Files\common + + + Source Files\hostapi\ASIO + + + Source Files\hostapi\ASIO\ASIOSDK + + + Source Files\hostapi\ASIO\ASIOSDK + + + Source Files\hostapi\ASIO\ASIOSDK + + + Source Files\hostapi\ASIO\ASIOSDK + + + Source Files\hostapi\ASIO\ASIOSDK + + + Source Files\hostapi\ASIO\ASIOSDK + + + Source Files\hostapi\ASIO\ASIOSDK + + + Source Files\hostapi\dsound + + + Source Files\hostapi\dsound + + + Source Files\hostapi\wmme + + + Source Files\hostapi\wasapi + + + Source Files\os\win + + + Source Files\os\win + + + Source Files\os\win + + + Source Files\os\win + + + Source Files\os\win + + + + + Resource Files + + + Resource Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/3rdparty/w32pthreads/pthreads.vcxproj b/3rdparty/w32pthreads/pthreads.vcxproj index 4e4df368e7..a28219234f 100644 --- a/3rdparty/w32pthreads/pthreads.vcxproj +++ b/3rdparty/w32pthreads/pthreads.vcxproj @@ -1,4 +1,5 @@ - + + Debug @@ -14,116 +15,274 @@ - w32pthreads - {26511268-2902-4997-8421-ECD7055F9E28} + w32pthreads.v3 + {26511268-2902-4997-8421-ECD7055F9E28} pthreads Win32Proj - + DynamicLibrary MultiByte + false DynamicLibrary MultiByte true - + DynamicLibrary MultiByte - - + + + + + + - - - - + + + + + - - - - - - - - - + + + + + + - <_ProjectFileVersion>10.0.20506.1 + <_ProjectFileVersion>10.0.30319.1 + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + - - - CompileAsC + $(ProjectDir);$(ProjectDir)\include;%(AdditionalIncludeDirectories) + _DEBUG;PTW32_BUILD;__CLEANUP_SEH;%(PreprocessorDefinitions) + Async + Use + ptw32pch.h + Level3 - + + ws2_32.lib;%(AdditionalDependencies) + $(SolutionDir)\bin\$(ProjectName).debug.dll + $(OutDir)$(ProjectName).lib + - - - CompileAsC + $(ProjectDir);$(ProjectDir)\include;%(AdditionalIncludeDirectories) + NDEBUG;PTW32_BUILD;__CLEANUP_SEH;%(PreprocessorDefinitions) + Async + Use + ptw32pch.h + Level3 - + + ws2_32.lib;%(AdditionalDependencies) + - - - CompileAsC + $(ProjectDir);$(ProjectDir)\include;%(AdditionalIncludeDirectories) + NDEBUG;PTW32_BUILD;__CLEANUP_SEH;%(PreprocessorDefinitions) + Async + Use + ptw32pch.h + Level3 - + + ws2_32.lib;%(AdditionalDependencies) + - - - - - true - true - true - - - - - - - + Create - ptw32pch.h - $(IntDir)ptw32.pch - Create - ptw32pch.h - $(IntDir)ptw32.pch Create - ptw32pch.h - $(IntDir)ptw32.pch + Create - - true - true - true - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + + + + + + + + + @@ -136,13 +295,7 @@ - - - - - - - + diff --git a/3rdparty/w32pthreads/pthreads.vcxproj.filters b/3rdparty/w32pthreads/pthreads.vcxproj.filters index b1ba6a4cbb..9e38b5dcf8 100644 --- a/3rdparty/w32pthreads/pthreads.vcxproj.filters +++ b/3rdparty/w32pthreads/pthreads.vcxproj.filters @@ -1,35 +1,44 @@  - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {ae009302-94c7-467a-b26b-43840fa3e460} + + + {37ecf3aa-bd9a-4735-86c2-63bbe4b3f038} + + + {1116e265-921b-4084-8577-f93db3396cf4} + + + {480f878f-fdc5-4011-a3fe-ec96c6a7df0f} + + + {44610aac-9831-4cc3-bc5e-2221ec190b96} + + + {dae54675-56e0-41c3-9c1b-894156ab6794} + + + {6f9cc070-859d-42a9-a96b-77c80d2ccd5e} {93995380-89BD-4b04-88EB-625FBE52EBFB} h;hpp;hxx;hm;inl;inc;xsd - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - Source Files - - - Source Files - - - Source Files - Source Files - - Source Files - Source Files @@ -39,51 +48,359 @@ 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\piecesparts - - Source Files + + Source Files\piecesparts + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\rwlock + + + Source Files\rwlock + + + Source Files\cond + + + Source Files\cond + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\attr + + + Source Files\mutex + + + Source Files\mutex + + + Source Files\mutex + + + Source Files\mutex + + + Source Files\mutex + + + Source Files\mutex + + + Source Files\mutex + + + Source Files\mutex + + + Source Files\mutex + + + Source Files\mutex + + + Source Files\mutex + + + Source Files\mutex + + + Source Files\mutex + + + Source Files\mutex + + + Source Files\semaphore + + + Source Files\semaphore + + + Source Files\semaphore + + + Source Files\semaphore + + + Source Files\semaphore + + + Source Files\semaphore + + + Source Files\semaphore + + + Source Files\semaphore + + + Source Files\semaphore + + + Source Files\semaphore + + + Source Files\semaphore + + + Source Files\spin + + + Source Files\spin + + + Source Files\spin + + + Source Files\spin + + + Source Files\spin + + + Source Files\spin + + + + + Source Files + + + Source Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + @@ -112,26 +429,8 @@ - - Source Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Source Files - + + Docs + \ No newline at end of file diff --git a/3rdparty/w32pthreads/pthreads_lib.vcxproj b/3rdparty/w32pthreads/pthreads_lib.vcxproj new file mode 100644 index 0000000000..13f1096d21 --- /dev/null +++ b/3rdparty/w32pthreads/pthreads_lib.vcxproj @@ -0,0 +1,644 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + w32pthreads_lib + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86} + pthreads + Win32Proj + + + + StaticLibrary + MultiByte + false + + + StaticLibrary + MultiByte + true + + + StaticLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + $(ProjectDir);$(ProjectDir)\include;%(AdditionalIncludeDirectories) + __CLEANUP_SEH;_DEBUG;%(PreprocessorDefinitions) + Async + Use + ptw32pch.h + Level3 + CompileAsCpp + + + + + $(ProjectDir);$(ProjectDir)\include;%(AdditionalIncludeDirectories) + __CLEANUP_SEH;NDEBUG;%(PreprocessorDefinitions) + Async + Use + ptw32pch.h + Level3 + + + + + $(ProjectDir);$(ProjectDir)\include;%(AdditionalIncludeDirectories) + __CLEANUP_SEH;NDEBUG;%(PreprocessorDefinitions) + Async + Use + ptw32pch.h + Level3 + CompileAsCpp + + + + + + + + + + Create + ptw32pch.h + Create + ptw32pch.h + Create + ptw32pch.h + + + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + {26511268-2902-4997-8421-ecd7055f9e28} + false + + + + + + \ No newline at end of file diff --git a/3rdparty/w32pthreads/pthreads_lib.vcxproj.filters b/3rdparty/w32pthreads/pthreads_lib.vcxproj.filters new file mode 100644 index 0000000000..4850da5f79 --- /dev/null +++ b/3rdparty/w32pthreads/pthreads_lib.vcxproj.filters @@ -0,0 +1,389 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {72eda860-6ad5-4e65-831a-6f9fc4136bec} + + + {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;tiff;tif;png;wav + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + Source Files\piecesparts + + + + + Source Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + + + Docs + + + Docs + + + Docs + + + Docs + + + Docs + + + Docs + + + Docs + + + Docs + + + \ No newline at end of file diff --git a/3rdparty/wxWidgets/build/msw/wx_adv.vcxproj b/3rdparty/wxWidgets/build/msw/wx_adv.vcxproj new file mode 100644 index 0000000000..eba2712906 --- /dev/null +++ b/3rdparty/wxWidgets/build/msw/wx_adv.vcxproj @@ -0,0 +1,227 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + wxAdv28 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E} + wxAdvanced + + + + StaticLibrary + false + Unicode + false + + + StaticLibrary + false + Unicode + true + + + StaticLibrary + false + Unicode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + $(ProjectRootDir)\include;$(ProjectRootDir)\include\msvc;$(SvnRootDir)\3rdparty\zlib;%(AdditionalIncludeDirectories) + _DEBUG;__WXDEBUG__;wxUSE_BASE=0;wxUSE_GUI=1;%(PreprocessorDefinitions) + Use + wx/wxprec.h + $(IntDir)$(TargetName).pch + Level4 + + + 0x0409 + + + $(OutDir)wxAdv28.lib + true + + + true + .\..\..\lib\vc_lib/wx_adv.bsc + + + + + $(ProjectRootDir)\include;$(ProjectRootDir)\include\msvc;$(SvnRootDir)\3rdparty\zlib;%(AdditionalIncludeDirectories) + wxUSE_BASE=0;wxUSE_GUI=1;%(PreprocessorDefinitions) + Use + wx/wxprec.h + $(IntDir)$(TargetName).pch + Level4 + + + 0x0409 + + + true + + + + + $(ProjectRootDir)\include;$(ProjectRootDir)\include\msvc;$(SvnRootDir)\3rdparty\zlib;%(AdditionalIncludeDirectories) + wxUSE_BASE=0;wxUSE_GUI=1;%(PreprocessorDefinitions) + Use + wx/wxprec.h + $(IntDir)$(TargetName).pch + Level4 + + + 0x0409 + + + true + + + + + + + Create + Create + Create + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {c34487af-228a-4d11-8e50-27803df76873} + false + + + + + + \ No newline at end of file diff --git a/3rdparty/wxWidgets/build/msw/wx_adv.vcxproj.filters b/3rdparty/wxWidgets/build/msw/wx_adv.vcxproj.filters new file mode 100644 index 0000000000..7eeb963b8e --- /dev/null +++ b/3rdparty/wxWidgets/build/msw/wx_adv.vcxproj.filters @@ -0,0 +1,250 @@ + + + + + {830e288e-de50-416f-b9fe-de54990470ab} + + + {093bb81c-d5d4-4ca2-89c5-34e4c4ab700c} + + + {e5e10b44-4cff-403c-9856-47d4412ac18e} + + + {4570e9b5-7f02-4751-9273-f488539124a3} + + + {cc045a62-6a78-471a-99fd-bc980c4810ca} + + + {5f7c1465-867e-4c72-94f0-a91c2b9c229c} + + + {5a7b805e-25b6-4aa3-a7fc-c9846a091fe9} + + + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + + + MSW Sources + + + + + Setup Headers + + + Setup Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + + + Common Headers + + + \ No newline at end of file diff --git a/3rdparty/wxWidgets/build/msw/wx_base.vcxproj b/3rdparty/wxWidgets/build/msw/wx_base.vcxproj new file mode 100644 index 0000000000..7686a90165 --- /dev/null +++ b/3rdparty/wxWidgets/build/msw/wx_base.vcxproj @@ -0,0 +1,386 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + wxBase28 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F} + wxBase28 + + + + StaticLibrary + false + Unicode + false + + + StaticLibrary + false + Unicode + + + StaticLibrary + false + Unicode + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + $(ProjectRootDir)\include;$(ProjectRootDir)\include\msvc;$(SvnRootDir)\3rdparty\zlib;%(AdditionalIncludeDirectories) + wxUSE_GUI=0;wxUSE_BASE=1;NDEBUG;%(PreprocessorDefinitions) + Use + wx/wxprec.h + $(IntDir)$(TargetName).pch + Level4 + + + 0x0409 + + + true + .\..\..\lib\vc_lib/wx_base.bsc + + + + + $(ProjectRootDir)\include;$(ProjectRootDir)\include\msvc;$(SvnRootDir)\3rdparty\zlib;%(AdditionalIncludeDirectories) + _DEBUG;__WXDEBUG__;wxUSE_BASE=1;wxUSE_GUI=0;%(PreprocessorDefinitions) + Use + wx/wxprec.h + $(IntDir)$(TargetName).pch + Level4 + + + 0x0409 + + + true + .\..\..\lib\vc_lib/wx_base.bsc + + + + + Full + OnlyExplicitInline + Size + false + $(ProjectRootDir)\include;$(ProjectRootDir)\include\msvc;$(SvnRootDir)\3rdparty\zlib;%(AdditionalIncludeDirectories) + wxUSE_GUI=0;wxUSE_BASE=1;NDEBUG;%(PreprocessorDefinitions) + Use + wx/wxprec.h + $(IntDir)$(TargetName).pch + Level4 + true + + + 0x0409 + + + true + .\..\..\lib\vc_lib/wx_base.bsc + + + + + + + + + + + + + + + + Create + Create + Create + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {c34487af-228a-4d11-8e50-27803df76873} + false + + + + + + \ No newline at end of file diff --git a/3rdparty/wxWidgets/build/msw/wx_base.vcxproj.filters b/3rdparty/wxWidgets/build/msw/wx_base.vcxproj.filters new file mode 100644 index 0000000000..8f0adbfa26 --- /dev/null +++ b/3rdparty/wxWidgets/build/msw/wx_base.vcxproj.filters @@ -0,0 +1,689 @@ + + + + + {b5293789-f436-410d-9eae-a3af27888fcb} + + + {25b418fa-adbb-4247-a2a0-3dee287a0545} + + + {b96f4405-9760-4a13-a65b-2f1d47734457} + + + {421d7063-551e-4536-997b-82babded914f} + + + {a604cf36-31ea-4264-b10e-079e7c0c7148} + + + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + + + MSW Sources + + + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + wxHTML Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + \ No newline at end of file diff --git a/3rdparty/wxWidgets/build/msw/wx_config.vcxproj b/3rdparty/wxWidgets/build/msw/wx_config.vcxproj new file mode 100644 index 0000000000..9a8980571b --- /dev/null +++ b/3rdparty/wxWidgets/build/msw/wx_config.vcxproj @@ -0,0 +1,96 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + wxConfig28 + {C34487AF-228A-4D11-8E50-27803DF76873} + wxConfig + + + + Utility + Unicode + false + + + Utility + Unicode + false + + + Utility + Unicode + false + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)$(Configuration)\ + $(Configuration)\ + $(SolutionDir)$(Configuration)\ + $(Configuration)\ + $(SolutionDir)$(Configuration)\ + $(Configuration)\ + + + + + + Creating ..\..\lib\vc_lib\mswd\wx\msw\rcdefs.h + cl /EP /nologo "%(FullPath)" > "..\..\lib\vc_lib\mswd\wx\msw\rcdefs.h" + + ..\..\lib\vc_lib\mswd\wx\msw\rcdefs.h;%(Outputs) + Creating ..\..\lib\vc_lib\mswd\wx\msw\rcdefs.h + cl /EP /nologo "%(FullPath)" > "..\..\lib\vc_lib\mswd\wx\msw\rcdefs.h" + + ..\..\lib\vc_lib\mswd\wx\msw\rcdefs.h;%(Outputs) + Creating ..\..\lib\vc_lib\mswd\wx\msw\rcdefs.h + cl /EP /nologo "%(FullPath)" > "..\..\lib\vc_lib\mswd\wx\msw\rcdefs.h" + + ..\..\lib\vc_lib\mswd\wx\msw\rcdefs.h;%(Outputs) + + + Creating ..\..\lib\vc_lib\mswd\wx\setup.h + copy "%(FullPath)" ..\..\lib\vc_lib\mswd\wx\setup.h + + ..\..\lib\vc_lib\mswd\wx\setup.h;%(Outputs) + Creating ..\..\lib\vc_lib\msw\wx\setup.h + copy "%(FullPath)" ..\..\lib\vc_lib\msw\wx\setup.h + + ..\..\lib\vc_lib\msw\wx\setup.h;%(Outputs) + Creating ..\..\lib\vc_lib\msw\wx\setup.h + copy "%(FullPath)" ..\..\lib\vc_lib\msw\wx\setup.h + + ..\..\lib\vc_lib\msw\wx\setup.h;%(Outputs) + + + + + + + \ No newline at end of file diff --git a/3rdparty/wxWidgets/build/msw/wx_config.vcxproj.filters b/3rdparty/wxWidgets/build/msw/wx_config.vcxproj.filters new file mode 100644 index 0000000000..44784e030e --- /dev/null +++ b/3rdparty/wxWidgets/build/msw/wx_config.vcxproj.filters @@ -0,0 +1,30 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;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;tiff;tif;png;wav + + + + + Header Files + + + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/3rdparty/wxWidgets/build/msw/wx_core.vcxproj b/3rdparty/wxWidgets/build/msw/wx_core.vcxproj new file mode 100644 index 0000000000..5bf7551f3e --- /dev/null +++ b/3rdparty/wxWidgets/build/msw/wx_core.vcxproj @@ -0,0 +1,1512 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + wxCore28 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0} + wxCore + + + + StaticLibrary + false + Unicode + false + + + StaticLibrary + false + Unicode + true + + + StaticLibrary + false + Unicode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + $(ProjectRootDir)\include;$(ProjectRootDir)\include\msvc;$(SvnRootDir)\3rdparty\zlib;$(ProjectRootDir)\src\png;$(SvnRootDir)\3rdparty\libjpeg;%(AdditionalIncludeDirectories) + _DEBUG;__WXDEBUG__;wxUSE_BASE=0;wxUSE_GUI=1;%(PreprocessorDefinitions) + Use + wx/wxprec.h + $(IntDir)$(TargetName).pch + Level4 + + + 0x0409 + + + true + + + + + $(ProjectRootDir)\include;$(ProjectRootDir)\include\msvc;$(SvnRootDir)\3rdparty\zlib;$(ProjectRootDir)\src\png;$(SvnRootDir)\3rdparty\libjpeg;%(AdditionalIncludeDirectories) + wxUSE_BASE=0;wxUSE_GUI=1;%(PreprocessorDefinitions) + Use + wx/wxprec.h + $(IntDir)$(TargetName).pch + Level4 + + + 0x0409 + + + true + + + + + $(ProjectRootDir)\include;$(ProjectRootDir)\include\msvc;$(SvnRootDir)\3rdparty\zlib;$(ProjectRootDir)\src\png;$(SvnRootDir)\3rdparty\libjpeg;%(AdditionalIncludeDirectories) + wxUSE_BASE=0;wxUSE_GUI=1;%(PreprocessorDefinitions) + Use + wx/wxprec.h + $(IntDir)$(TargetName).pch + Level4 + + + 0x0409 + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Create + Create + Create + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + + + + + + + + + + + + + + + + + + + + + + + true + + + true + + + true + + + true + + + true + + + true + true + true + + + true + + + true + + + true + true + true + + + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + true + %(AdditionalIncludeDirectories) + %(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + + + + + {bc236261-77e8-4567-8d09-45cd02965eb6} + false + + + {c34487af-228a-4d11-8e50-27803df76873} + false + + + + + + \ No newline at end of file diff --git a/3rdparty/wxWidgets/build/msw/wx_core.vcxproj.filters b/3rdparty/wxWidgets/build/msw/wx_core.vcxproj.filters new file mode 100644 index 0000000000..7f3e8901f8 --- /dev/null +++ b/3rdparty/wxWidgets/build/msw/wx_core.vcxproj.filters @@ -0,0 +1,2339 @@ + + + + + {441c0c3f-751f-496c-8814-02beec20d2d0} + + + {1ea2b2bb-90c5-4bd5-9712-af4d1791038d} + + + {cd431497-bb5d-4a57-ad61-3f3a60e84b40} + + + {d0908f68-88c8-4092-91ad-c9b338c55a70} + + + {8267a708-8a9e-45f1-a048-5b95aceb2705} + + + {0a38d0bb-f3ca-426a-8012-f7f8e1bdc2e0} + + + {efc1e641-f480-40f5-a8ff-30f0b1068722} + + + {caebc439-5015-468f-be12-735d29ed9ff4} + + + {9047c433-4645-47d4-93e7-108fa946be42} + + + {b319415a-f149-4690-bb49-ea5d2d6d6b96} + + + {9d2584bf-a90c-4987-981c-84d42781ff65} + + + {0ed566de-2ecf-42c9-bcb9-e2022129ad88} + + + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + Common Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + MSW Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + Generic Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + wxUniv Sources + + + png + + + png + + + png + + + png + + + png + + + png + + + png + + + png + + + png + + + png + + + png + + + png + + + png + + + png + + + png + + + png + + + + + Setup Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + MSW Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + Generic Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxUniv Headers + + + wxHTML Headers + + + wxHTML Headers + + + wxHTML Headers + + + wxHTML Headers + + + wxHTML Headers + + + wxHTML Headers + + + wxHTML Headers + + + wxHTML Headers + + + wxHTML Headers + + + wxHTML Headers + + + wxHTML Headers + + + wxHTML Headers + + + wxHTML Headers + + + wxHTML Headers + + + wxHTML Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + Common Headers + + + png + + + png + + + png + + + + + Resources + + + \ No newline at end of file diff --git a/3rdparty/zlib/zlib.vcxproj b/3rdparty/zlib/zlib.vcxproj index 67642e8572..d2e7aac56d 100644 --- a/3rdparty/zlib/zlib.vcxproj +++ b/3rdparty/zlib/zlib.vcxproj @@ -1,4 +1,5 @@ - + + Debug @@ -14,57 +15,96 @@ - {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47} + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47} zlib - + StaticLibrary MultiByte + false StaticLibrary + Static MultiByte true - + StaticLibrary MultiByte - - + + + + + + - - - - + + + + + - - - - - - - - - + + + + + + - <_ProjectFileVersion>10.0.20506.1 + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + - + + _CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions) + Level3 + - + + _CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions) + Level3 + - + + _CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions) + Level3 + + + + + + + + + + + + + + + + + + @@ -77,20 +117,6 @@ - - - - - - - - - - - - - - diff --git a/3rdparty/zlib/zlib.vcxproj.filters b/3rdparty/zlib/zlib.vcxproj.filters index 631d9fdbd4..3c69f7f9f0 100644 --- a/3rdparty/zlib/zlib.vcxproj.filters +++ b/3rdparty/zlib/zlib.vcxproj.filters @@ -1,18 +1,61 @@  - - {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;tiff;tif;png;wav - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + + + 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 + @@ -46,42 +89,4 @@ Header 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 - - \ No newline at end of file diff --git a/common/build/Utilities/utilities.vcxproj b/common/build/Utilities/utilities.vcxproj new file mode 100644 index 0000000000..a47c6991d8 --- /dev/null +++ b/common/build/Utilities/utilities.vcxproj @@ -0,0 +1,190 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + {4639972E-424E-4E13-8B07-CA403C481346} + x86emitter + Win32Proj + + + + StaticLibrary + Unicode + true + + + StaticLibrary + Unicode + true + + + StaticLibrary + Unicode + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + _LIB;%(PreprocessorDefinitions) + Async + Use + PrecompiledHeader.h + + + + + _LIB;%(PreprocessorDefinitions) + Async + Use + PrecompiledHeader.h + + + + + _LIB;%(PreprocessorDefinitions) + Async + Use + PrecompiledHeader.h + + + + + + + + + + + + + Create + Create + Create + + + + + + + + + + + true + true + true + + + true + true + true + + + true + true + true + + + + + + + + + + + Document + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {48ad7e0a-25b1-4974-a1e3-03f8c438d34f} + false + + + + + + \ No newline at end of file diff --git a/common/build/Utilities/utilities.vcxproj.filters b/common/build/Utilities/utilities.vcxproj.filters new file mode 100644 index 0000000000..2ff782ac93 --- /dev/null +++ b/common/build/Utilities/utilities.vcxproj.filters @@ -0,0 +1,204 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {54fbf775-c53a-4e27-8903-2f68688d7764} + + + {903e4e1a-fc21-4f41-83c6-fb70d90cbb58} + + + {b7963f4a-9718-4852-bb0a-62dc0931f98e} + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {a3d21581-efe9-4749-a801-0ae50cbed855} + + + + + 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\Linux + + + Source Files\Linux + + + Source Files\Linux + + + Source Files\Windows + + + Source Files\Windows + + + Source Files\Windows + + + Source Files\Threading + + + Source Files\Threading + + + Source Files\Threading + + + + + Header Files + + + Header Files\Threading + + + + + Source Files\Threading + + + 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 + + + Header Files + + + Header Files + + + Header Files\Threading + + + + + Source Files\Linux + + + \ No newline at end of file diff --git a/common/build/x86emitter/x86emitter.vcxproj b/common/build/x86emitter/x86emitter.vcxproj new file mode 100644 index 0000000000..fb024d71cf --- /dev/null +++ b/common/build/x86emitter/x86emitter.vcxproj @@ -0,0 +1,158 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + {A51123F5-9505-4EAE-85E7-D320290A272C} + x86emitter + Win32Proj + + + + StaticLibrary + Unicode + true + + + StaticLibrary + Unicode + true + + + StaticLibrary + Unicode + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + Disabled + WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) + Use + PrecompiledHeader.h + + + + + MaxSpeed + true + WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) + Use + PrecompiledHeader.h + + + + + MaxSpeed + true + WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) + Use + PrecompiledHeader.h + + + + + + + + + + + + + Create + Create + Create + + + + + + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/common/build/x86emitter/x86emitter.vcxproj.filters b/common/build/x86emitter/x86emitter.vcxproj.filters new file mode 100644 index 0000000000..693c54b99e --- /dev/null +++ b/common/build/x86emitter/x86emitter.vcxproj.filters @@ -0,0 +1,161 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {349ada14-68b6-4be5-8232-b162efb0a5aa} + + + {12d7c7d4-d7f1-43cb-86c3-585dad794bf6} + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {66921012-17b3-45f6-aa8c-82e845c489f8} + + + {ae9884f6-cbd3-4fb6-a011-c776dce9b6ee} + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + + + 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\Linux + + + Source Files\Windows + + + + + 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\Implement + + + Header Files\Implement + + + Header Files\Implement + + + Header Files\Implement + + + Header Files\Implement + + + Header Files\Implement + + + Header Files\Implement + + + Header Files\Implement + + + Header Files\Implement + + + Header Files\Implement + + + Header Files\Implement_Simd + + + Header Files\Implement_Simd + + + Header Files\Implement_Simd + + + Header Files\Implement_Simd + + + Header Files\Implement_Simd + + + + + Header Files + + + \ No newline at end of file diff --git a/pcsx2_suite_2010.sln b/pcsx2_suite_2010.sln index cf0aab5eac..e61995a945 100644 --- a/pcsx2_suite_2010.sln +++ b/pcsx2_suite_2010.sln @@ -1,113 +1,1033 @@  Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual Studio 10 +# Visual Studio 2010 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Nulls", "Nulls", "{E1828E40-2FBB-48FE-AE7F-5587755DCE0E}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "3rdparty", "3rdparty", "{78EBE642-7A4D-4EA7-86BE-5639C6646C38}" + ProjectSection(SolutionItems) = preProject + 3rdparty\svn_readme.txt = 3rdparty\svn_readme.txt + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{703FD00B-D7A0-41E3-BD03-CEC86B385DAF}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{88F517F9-CE1C-4005-9BDF-4481FEB55053}" + ProjectSection(SolutionItems) = preProject + common\svn_readme.txt = common\svn_readme.txt + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Include", "Include", "{0FADC26C-0E9D-4DD7-84B1-BF4F7754E90C}" + ProjectSection(SolutionItems) = preProject + common\include\afxresmw.h = common\include\afxresmw.h + common\include\intrin_x86.h = common\include\intrin_x86.h + common\include\Pcsx2Api.h = common\include\Pcsx2Api.h + common\include\Pcsx2Defs.h = common\include\Pcsx2Defs.h + common\include\Pcsx2Types.h = common\include\Pcsx2Types.h + common\include\PluginCallbacks.h = common\include\PluginCallbacks.h + common\include\PS2Edefs.h = common\include\PS2Edefs.h + common\include\PS2Etypes.h = common\include\PS2Etypes.h + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "wx", "wx", "{62BF822E-6A12-49A8-BE8C-C55A9BCA24DA}" + ProjectSection(SolutionItems) = preProject + common\include\wx\folderdesc.txt = common\include\wx\folderdesc.txt + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{2D6F0A62-A247-4CCF-947F-FCD54BE16103}" +EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcsx2", "pcsx2\windows\VCprojects\pcsx2.vcxproj", "{1CEFD830-2B76-4596-A4EE-BCD7280A60BD}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZeroGS", "plugins\zerogs\dx\Windows\zerogs.vcxproj", "{5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}" ProjectSection(ProjectDependencies) = postProject - {26511268-2902-4997-8421-ECD7055F9E28} = {26511268-2902-4997-8421-ECD7055F9E28} {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47} = {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47} EndProjectSection EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "3rdparty", "3rdparty", "{A306AA7F-A984-407A-A37D-3275979368C4}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CDVDiso", "plugins\CDVDiso\src\Windows\CDVDiso.vcxproj", "{5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "3rdparty\zlib\zlib.vcxproj", "{2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w32pthreads", "3rdparty\w32pthreads\pthreads.vcxproj", "{26511268-2902-4997-8421-ECD7055F9E28}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "plugins", "plugins", "{10757E7A-E2B8-4FD3-9194-71331BF36D13}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CDVDolio", "plugins\CDVDolio\cdvd.vcxproj", "{FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SPU2-X", "plugins\spu2-x\src\Windows\Spu2-X.vcxproj", "{5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GSdx", "plugins\GSdx\GSdx.vcxproj", "{18E42F6F-3A62-41EE-B42F-79366C4F1E95}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SoundTouch", "3rdparty\SoundTouch\SoundTouch.vcxproj", "{E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "3rdparty\zlib\zlib.vcxproj", "{2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bzip2", "3rdparty\bzip2\bzip2.vcxproj", "{F4EB4AB2-C595-4B05-8BC0-059024BC796C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LilyPad", "plugins\LilyPad\LilyPad.vcxproj", "{E4081455-398C-4610-A87C-90A8A7D72DC3}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w32pthreads.v3", "3rdparty\w32pthreads\pthreads.vcxproj", "{26511268-2902-4997-8421-ECD7055F9E28}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZeroSPU2", "plugins\zerospu2\Windows\ZeroSPU2.vcxproj", "{7F059854-568D-4E08-9D00-1E78E203E4DC}" + ProjectSection(ProjectDependencies) = postProject + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D} = {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D} + {26511268-2902-4997-8421-ECD7055F9E28} = {26511268-2902-4997-8421-ECD7055F9E28} + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86} = {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86} + EndProjectSection +EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xpad", "plugins\xpad\xpad.vcxproj", "{6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{06C9589C-DFD3-4CE8-B69A-32208C2767B2}" - ProjectSection(SolutionItems) = preProject - common\include\afxresmw.h = common\include\afxresmw.h - common\include\Pcsx2Api.h = common\include\Pcsx2Api.h - common\include\Pcsx2Config.h = common\include\Pcsx2Config.h - common\include\Pcsx2Defs.h = common\include\Pcsx2Defs.h - common\include\Pcsx2Types.h = common\include\Pcsx2Types.h +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CDVDolio", "plugins\CDVDolio\cdvd.vcxproj", "{FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CDVDnull", "plugins\CDVDnull\Windows\CDVDnull.vcxproj", "{F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "USBnull", "plugins\USBnull\Windows\USBnull.vcxproj", "{BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FWnull", "plugins\FWnull\Windows\FWnull.vcxproj", "{3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DEV9null", "plugins\dev9null\Windows\DEV9null.vcxproj", "{04439C5F-05FB-4A9C-AAD1-5388C25377DB}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wxBase28", "3rdparty\wxWidgets\build\msw\wx_base.vcxproj", "{48AD7E0A-25B1-4974-A1E3-03F8C438D34F}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wxCore28", "3rdparty\wxWidgets\build\msw\wx_core.vcxproj", "{0318BA30-EF48-441A-9E10-DC85EFAE39F0}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wxConfig28", "3rdparty\wxWidgets\build\msw\wx_config.vcxproj", "{C34487AF-228A-4D11-8E50-27803DF76873}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "x86emitter", "common\build\x86emitter\x86emitter.vcxproj", "{A51123F5-9505-4EAE-85E7-D320290A272C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "utilities", "common\build\Utilities\utilities.vcxproj", "{4639972E-424E-4E13-8B07-CA403C481346}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wxAdv28", "3rdparty\wxWidgets\build\msw\wx_adv.vcxproj", "{0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bin2cpp", "tools\bin2cpp\bin2c.vcxproj", "{677B7D11-D5E1-40B3-88B1-9A4DF83D2213}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libjpeg7", "3rdparty\libjpeg\libjpeg.vcxproj", "{BC236261-77E8-4567-8D09-45CD02965EB6}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glew_static", "3rdparty\glew\glew_static.vcxproj", "{067D7863-393B-494F-B296-4A8853EB3D1D}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w32pthreads_lib", "3rdparty\w32pthreads\pthreads_lib.vcxproj", "{7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cdvdGigaherz", "plugins\cdvdGigaherz\src\Windows\cdvdGigaherz.vcxproj", "{5CF88D5F-64DD-4EDC-9F1A-436BD502940A}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GSnull", "plugins\GSnull\Windows\GSnull.vcxproj", "{5FCBD521-5A0B-4D97-A823-A97E6BAB9101}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PadSSSPSX", "plugins\SSSPSXPAD\PadSSSPSX.vcxproj", "{6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Padnull", "plugins\PadNull\Windows\PadNull.vcxproj", "{6BC4D85D-A399-407E-96A9-CD5416A54269}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "portaudio", "3rdparty\portaudio\build\msvc\portaudio.vcxproj", "{0A18A071-125E-442F-AFF7-A3F68ABECF99}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZZOgl", "plugins\zzogl-pg\opengl\Win32\zerogsogl.vcxproj", "{2D4E85B2-F47F-4D65-B091-701E5C031DAC}" + ProjectSection(ProjectDependencies) = postProject + {4639972E-424E-4E13-8B07-CA403C481346} = {4639972E-424E-4E13-8B07-CA403C481346} + {BC236261-77E8-4567-8D09-45CD02965EB6} = {BC236261-77E8-4567-8D09-45CD02965EB6} + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47} = {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47} EndProjectSection EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug SSE2|Win32 = Debug SSE2|Win32 + Debug SSE2|x64 = Debug SSE2|x64 + Debug SSE4|Win32 = Debug SSE4|Win32 + Debug SSE4|x64 = Debug SSE4|x64 + Debug SSSE3|Win32 = Debug SSSE3|Win32 + Debug SSSE3|x64 = Debug SSSE3|x64 Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 Devel|Win32 = Devel|Win32 + Devel|x64 = Devel|x64 Release SSE2|Win32 = Release SSE2|Win32 + Release SSE2|x64 = Release SSE2|x64 Release SSE4|Win32 = Release SSE4|Win32 + Release SSE4|x64 = Release SSE4|x64 Release SSSE3|Win32 = Release SSSE3|Win32 + Release SSSE3|x64 = Release SSSE3|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Debug|Win32.ActiveCfg = Debug|Win32 {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Debug|Win32.Build.0 = Debug|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Debug|x64.ActiveCfg = Debug|Win32 {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Devel|Win32.ActiveCfg = Devel|Win32 {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Devel|Win32.Build.0 = Devel|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Devel|x64.ActiveCfg = Devel|Win32 {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Release SSE2|Win32.ActiveCfg = Release|Win32 {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Release SSE2|Win32.Build.0 = Release|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Release SSE2|x64.ActiveCfg = Release|Win32 {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Release SSE4|Win32.ActiveCfg = Release|Win32 {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Release SSE4|Win32.Build.0 = Release|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Release SSE4|x64.ActiveCfg = Release|Win32 {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Release SSSE3|Win32.ActiveCfg = Release|Win32 {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Release SSSE3|Win32.Build.0 = Release|Win32 - {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug|Win32.ActiveCfg = Debug|Win32 - {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug|Win32.Build.0 = Debug|Win32 - {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Devel|Win32.ActiveCfg = Devel|Win32 - {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Devel|Win32.Build.0 = Devel|Win32 - {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSE2|Win32.ActiveCfg = Release|Win32 - {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSE2|Win32.Build.0 = Release|Win32 - {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSE4|Win32.ActiveCfg = Release|Win32 - {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSE4|Win32.Build.0 = Release|Win32 - {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSSE3|Win32.ActiveCfg = Release|Win32 - {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSSE3|Win32.Build.0 = Release|Win32 - {26511268-2902-4997-8421-ECD7055F9E28}.Debug|Win32.ActiveCfg = Debug|Win32 - {26511268-2902-4997-8421-ECD7055F9E28}.Debug|Win32.Build.0 = Debug|Win32 - {26511268-2902-4997-8421-ECD7055F9E28}.Devel|Win32.ActiveCfg = Devel|Win32 - {26511268-2902-4997-8421-ECD7055F9E28}.Devel|Win32.Build.0 = Devel|Win32 - {26511268-2902-4997-8421-ECD7055F9E28}.Release SSE2|Win32.ActiveCfg = Release|Win32 - {26511268-2902-4997-8421-ECD7055F9E28}.Release SSE2|Win32.Build.0 = Release|Win32 - {26511268-2902-4997-8421-ECD7055F9E28}.Release SSE4|Win32.ActiveCfg = Release|Win32 - {26511268-2902-4997-8421-ECD7055F9E28}.Release SSE4|Win32.Build.0 = Release|Win32 - {26511268-2902-4997-8421-ECD7055F9E28}.Release SSSE3|Win32.ActiveCfg = Release|Win32 - {26511268-2902-4997-8421-ECD7055F9E28}.Release SSSE3|Win32.Build.0 = Release|Win32 - {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Debug|Win32.ActiveCfg = Debug|Win32 - {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Debug|Win32.Build.0 = Debug|Win32 - {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Devel|Win32.ActiveCfg = Release|Win32 - {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Devel|Win32.Build.0 = Release|Win32 - {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSE2|Win32.ActiveCfg = Release|Win32 - {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSE2|Win32.Build.0 = Release|Win32 - {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSE4|Win32.ActiveCfg = Release|Win32 - {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSE4|Win32.Build.0 = Release|Win32 - {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSSE3|Win32.ActiveCfg = Release|Win32 - {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSSE3|Win32.Build.0 = Release|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Release|Win32.ActiveCfg = Release|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Release|Win32.Build.0 = Release|Win32 + {1CEFD830-2B76-4596-A4EE-BCD7280A60BD}.Release|x64.ActiveCfg = Release|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Debug|Win32.ActiveCfg = Debug|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Debug|Win32.Build.0 = Debug|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Debug|x64.ActiveCfg = Debug|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Devel|Win32.ActiveCfg = Devel|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Devel|Win32.Build.0 = Devel|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Devel|x64.ActiveCfg = Devel|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Release SSE2|Win32.Build.0 = Release|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Release SSE2|x64.ActiveCfg = Release|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Release SSE4|Win32.Build.0 = Release|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Release SSE4|x64.ActiveCfg = Release|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Release SSSE3|Win32.Build.0 = Release|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Release|Win32.ActiveCfg = Release|Win32 + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8}.Release|x64.ActiveCfg = Release|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Debug|Win32.ActiveCfg = Debug|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Debug|Win32.Build.0 = Debug|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Debug|x64.ActiveCfg = Debug|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Devel|Win32.ActiveCfg = Devel|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Devel|Win32.Build.0 = Devel|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Devel|x64.ActiveCfg = Devel|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Release SSE2|Win32.Build.0 = Release|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Release SSE2|x64.ActiveCfg = Release|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Release SSE4|Win32.Build.0 = Release|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Release SSE4|x64.ActiveCfg = Release|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Release SSSE3|Win32.Build.0 = Release|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Release|Win32.ActiveCfg = Release|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Release|Win32.Build.0 = Release|Win32 + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3}.Release|x64.ActiveCfg = Release|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Debug|Win32.ActiveCfg = Debug|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Debug|Win32.Build.0 = Debug|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Debug|x64.ActiveCfg = Debug|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Devel|Win32.ActiveCfg = Devel|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Devel|Win32.Build.0 = Devel|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Devel|x64.ActiveCfg = Devel|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Release SSE2|Win32.Build.0 = Release|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Release SSE2|x64.ActiveCfg = Release|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Release SSE4|Win32.Build.0 = Release|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Release SSE4|x64.ActiveCfg = Release|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Release SSSE3|Win32.Build.0 = Release|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Release|Win32.ActiveCfg = Release|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Release|Win32.Build.0 = Release|Win32 + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4}.Release|x64.ActiveCfg = Release|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug SSE2|Win32.ActiveCfg = Debug SSE2|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug SSE2|Win32.Build.0 = Debug SSE2|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug SSE2|x64.ActiveCfg = Debug SSE2|x64 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug SSE2|x64.Build.0 = Debug SSE2|x64 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug SSE4|Win32.ActiveCfg = Debug SSE4|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug SSE4|Win32.Build.0 = Debug SSE4|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug SSE4|x64.ActiveCfg = Debug SSE4|x64 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug SSE4|x64.Build.0 = Debug SSE4|x64 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug SSSE3|Win32.ActiveCfg = Debug SSSE3|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug SSSE3|Win32.Build.0 = Debug SSSE3|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug SSSE3|x64.ActiveCfg = Debug SSSE3|x64 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug SSSE3|x64.Build.0 = Debug SSSE3|x64 {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug|Win32.ActiveCfg = Debug SSE2|Win32 {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug|Win32.Build.0 = Debug SSE2|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Debug|x64.ActiveCfg = Debug|Win32 {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Devel|Win32.ActiveCfg = Release SSE2|Win32 {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Devel|Win32.Build.0 = Release SSE2|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Devel|x64.ActiveCfg = Debug|Win32 {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Release SSE2|Win32.ActiveCfg = Release SSE2|Win32 {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Release SSE2|Win32.Build.0 = Release SSE2|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Release SSE2|x64.ActiveCfg = Release SSE2|Win32 {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Release SSE4|Win32.ActiveCfg = Release SSE4|Win32 {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Release SSE4|Win32.Build.0 = Release SSE4|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Release SSE4|x64.ActiveCfg = Release SSE4|Win32 {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Release SSSE3|Win32.ActiveCfg = Release SSSE3|Win32 {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Release SSSE3|Win32.Build.0 = Release SSSE3|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Release SSSE3|x64.ActiveCfg = Release SSSE3|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Release|Win32.ActiveCfg = Release|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Release|Win32.Build.0 = Release|Win32 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Release|x64.ActiveCfg = Release|x64 + {18E42F6F-3A62-41EE-B42F-79366C4F1E95}.Release|x64.Build.0 = Release|x64 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Debug|Win32.ActiveCfg = Debug|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Debug|Win32.Build.0 = Debug|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Debug|x64.ActiveCfg = Debug|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Devel|Win32.ActiveCfg = Devel|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Devel|Win32.Build.0 = Devel|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Devel|x64.ActiveCfg = Devel|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Release SSE2|Win32.Build.0 = Release|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Release SSE2|x64.ActiveCfg = Release|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Release SSE4|Win32.Build.0 = Release|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Release SSE4|x64.ActiveCfg = Release|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Release SSSE3|Win32.Build.0 = Release|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Release|Win32.ActiveCfg = Release|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Release|Win32.Build.0 = Release|Win32 + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}.Release|x64.ActiveCfg = Release|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug|Win32.ActiveCfg = Debug|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug|Win32.Build.0 = Debug|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Debug|x64.ActiveCfg = Debug|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Devel|Win32.ActiveCfg = Devel|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Devel|Win32.Build.0 = Devel|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Devel|x64.ActiveCfg = Devel|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSE2|Win32.Build.0 = Release|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSE2|x64.ActiveCfg = Release|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSE4|Win32.Build.0 = Release|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSE4|x64.ActiveCfg = Release|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSSE3|Win32.Build.0 = Release|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release|Win32.ActiveCfg = Release|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release|Win32.Build.0 = Release|Win32 + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47}.Release|x64.ActiveCfg = Release|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Debug|Win32.ActiveCfg = Debug|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Debug|Win32.Build.0 = Debug|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Debug|x64.ActiveCfg = Debug|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Devel|Win32.ActiveCfg = Devel|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Devel|Win32.Build.0 = Devel|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Devel|x64.ActiveCfg = Devel|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Release SSE2|Win32.Build.0 = Release|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Release SSE2|x64.ActiveCfg = Release|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Release SSE4|Win32.Build.0 = Release|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Release SSE4|x64.ActiveCfg = Release|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Release SSSE3|Win32.Build.0 = Release|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Release|Win32.ActiveCfg = Release|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Release|Win32.Build.0 = Release|Win32 + {F4EB4AB2-C595-4B05-8BC0-059024BC796C}.Release|x64.ActiveCfg = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Debug SSE2|Win32.ActiveCfg = Debug|x64 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Debug SSE2|x64.ActiveCfg = Debug|x64 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Debug SSE2|x64.Build.0 = Debug|x64 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Debug SSE4|Win32.ActiveCfg = Debug|x64 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Debug SSE4|x64.ActiveCfg = Debug|x64 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Debug SSE4|x64.Build.0 = Debug|x64 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Debug SSSE3|Win32.ActiveCfg = Debug|x64 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Debug SSSE3|x64.ActiveCfg = Debug|x64 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Debug SSSE3|x64.Build.0 = Debug|x64 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Debug|Win32.ActiveCfg = Debug|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Debug|Win32.Build.0 = Debug|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Debug|x64.ActiveCfg = Debug|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Devel|Win32.ActiveCfg = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Devel|Win32.Build.0 = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Devel|x64.ActiveCfg = Debug|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Release SSE2|Win32.Build.0 = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Release SSE2|x64.ActiveCfg = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Release SSE4|Win32.Build.0 = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Release SSE4|x64.ActiveCfg = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Release SSSE3|Win32.Build.0 = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Release|Win32.ActiveCfg = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Release|Win32.Build.0 = Release|Win32 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Release|x64.ActiveCfg = Release|x64 + {E4081455-398C-4610-A87C-90A8A7D72DC3}.Release|x64.Build.0 = Release|x64 + {26511268-2902-4997-8421-ECD7055F9E28}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Debug|Win32.ActiveCfg = Debug|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Debug|Win32.Build.0 = Debug|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Debug|x64.ActiveCfg = Debug|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Devel|Win32.ActiveCfg = Devel|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Devel|Win32.Build.0 = Devel|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Devel|x64.ActiveCfg = Devel|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Release SSE2|Win32.Build.0 = Release|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Release SSE2|x64.ActiveCfg = Release|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Release SSE4|Win32.Build.0 = Release|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Release SSE4|x64.ActiveCfg = Release|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Release SSSE3|Win32.Build.0 = Release|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Release|Win32.ActiveCfg = Release|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Release|Win32.Build.0 = Release|Win32 + {26511268-2902-4997-8421-ECD7055F9E28}.Release|x64.ActiveCfg = Release|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Debug|Win32.ActiveCfg = Debug|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Debug|Win32.Build.0 = Debug|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Debug|x64.ActiveCfg = Debug|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Devel|Win32.ActiveCfg = Devel|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Devel|Win32.Build.0 = Devel|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Devel|x64.ActiveCfg = Devel|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Release SSE2|Win32.Build.0 = Release|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Release SSE2|x64.ActiveCfg = Release|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Release SSE4|Win32.Build.0 = Release|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Release SSE4|x64.ActiveCfg = Release|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Release SSSE3|Win32.Build.0 = Release|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Release|Win32.ActiveCfg = Release|Win32 + {7F059854-568D-4E08-9D00-1E78E203E4DC}.Release|x64.ActiveCfg = Release|Win32 + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Debug SSE2|Win32.ActiveCfg = Debug SSE2|Win32 + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Debug SSE2|x64.ActiveCfg = Debug SSE2|x64 + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Debug SSE4|Win32.ActiveCfg = Debug SSE4|Win32 + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Debug SSE4|x64.ActiveCfg = Debug SSE4|x64 + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Debug SSSE3|Win32.ActiveCfg = Debug SSSE3|Win32 + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Debug SSSE3|x64.ActiveCfg = Debug SSSE3|x64 {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Debug|Win32.ActiveCfg = Debug|Win32 {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Debug|Win32.Build.0 = Debug|Win32 + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Debug|x64.ActiveCfg = Debug|Win32 {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Devel|Win32.ActiveCfg = Release|Win32 {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Devel|Win32.Build.0 = Release|Win32 + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Devel|x64.ActiveCfg = Debug SSE4|Win32 {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Release SSE2|Win32.ActiveCfg = Release|Win32 {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Release SSE2|Win32.Build.0 = Release|Win32 + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Release SSE2|x64.ActiveCfg = Release SSE2|Win32 {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Release SSE4|Win32.ActiveCfg = Release|Win32 {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Release SSE4|Win32.Build.0 = Release|Win32 + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Release SSE4|x64.ActiveCfg = Release SSE4|Win32 {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Release SSSE3|Win32.ActiveCfg = Release|Win32 {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Release SSSE3|Win32.Build.0 = Release|Win32 + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Release SSSE3|x64.ActiveCfg = Release SSSE3|Win32 + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Release|Win32.ActiveCfg = Release|Win32 + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A}.Release|x64.ActiveCfg = Release|x64 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Debug SSE2|Win32.ActiveCfg = Debug SSE2|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Debug SSE2|x64.ActiveCfg = Debug SSE2|x64 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Debug SSE4|Win32.ActiveCfg = Debug SSE4|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Debug SSE4|x64.ActiveCfg = Debug SSE4|x64 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Debug SSSE3|Win32.ActiveCfg = Debug SSSE3|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Debug SSSE3|x64.ActiveCfg = Debug SSSE3|x64 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Debug|Win32.ActiveCfg = Debug|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Debug|Win32.Build.0 = Debug|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Debug|x64.ActiveCfg = Debug|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Devel|Win32.ActiveCfg = Release|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Devel|Win32.Build.0 = Release|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Devel|x64.ActiveCfg = Debug SSE4|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSE2|Win32.Build.0 = Release|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSE2|x64.ActiveCfg = Release SSE2|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSE4|Win32.Build.0 = Release|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSE4|x64.ActiveCfg = Release SSE4|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSSE3|Win32.Build.0 = Release|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release SSSE3|x64.ActiveCfg = Release SSSE3|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release|Win32.ActiveCfg = Release|Win32 + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB}.Release|x64.ActiveCfg = Release|x64 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Debug SSE2|Win32.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Debug SSE2|x64.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Debug SSE4|Win32.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Debug SSE4|x64.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Debug SSSE3|Win32.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Debug SSSE3|x64.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Debug|Win32.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Debug|Win32.Build.0 = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Debug|x64.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Devel|Win32.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Devel|Win32.Build.0 = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Devel|x64.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Release SSE2|Win32.Build.0 = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Release SSE2|x64.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Release SSE4|Win32.Build.0 = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Release SSE4|x64.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Release SSSE3|Win32.Build.0 = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Release|Win32.ActiveCfg = Release|Win32 + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0}.Release|x64.ActiveCfg = Release|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Debug|Win32.ActiveCfg = Debug|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Debug|Win32.Build.0 = Debug|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Debug|x64.ActiveCfg = Debug|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Devel|Win32.ActiveCfg = Release|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Devel|Win32.Build.0 = Release|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Devel|x64.ActiveCfg = Debug|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Release SSE2|Win32.Build.0 = Release|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Release SSE2|x64.ActiveCfg = Release|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Release SSE4|Win32.Build.0 = Release|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Release SSE4|x64.ActiveCfg = Release|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Release SSSE3|Win32.Build.0 = Release|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Release|Win32.ActiveCfg = Release|Win32 + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70}.Release|x64.ActiveCfg = Release|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Debug|Win32.ActiveCfg = Debug|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Debug|Win32.Build.0 = Debug|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Debug|x64.ActiveCfg = Debug|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Devel|Win32.ActiveCfg = Release|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Devel|Win32.Build.0 = Release|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Devel|x64.ActiveCfg = Debug|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Release SSE2|Win32.Build.0 = Release|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Release SSE2|x64.ActiveCfg = Release|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Release SSE4|Win32.Build.0 = Release|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Release SSE4|x64.ActiveCfg = Release|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Release SSSE3|Win32.Build.0 = Release|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Release|Win32.ActiveCfg = Release|Win32 + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C}.Release|x64.ActiveCfg = Release|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Debug|Win32.ActiveCfg = Debug|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Debug|Win32.Build.0 = Debug|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Debug|x64.ActiveCfg = Debug|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Devel|Win32.ActiveCfg = Release|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Devel|Win32.Build.0 = Release|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Devel|x64.ActiveCfg = Debug|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Release SSE2|Win32.Build.0 = Release|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Release SSE2|x64.ActiveCfg = Release|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Release SSE4|Win32.Build.0 = Release|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Release SSE4|x64.ActiveCfg = Release|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Release SSSE3|Win32.Build.0 = Release|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Release|Win32.ActiveCfg = Release|Win32 + {04439C5F-05FB-4A9C-AAD1-5388C25377DB}.Release|x64.ActiveCfg = Release|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Debug|Win32.ActiveCfg = Debug|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Debug|Win32.Build.0 = Debug|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Debug|x64.ActiveCfg = Debug|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Devel|Win32.ActiveCfg = Devel|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Devel|Win32.Build.0 = Devel|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Devel|x64.ActiveCfg = Devel|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Release SSE2|Win32.Build.0 = Release|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Release SSE2|x64.ActiveCfg = Release|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Release SSE4|Win32.Build.0 = Release|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Release SSE4|x64.ActiveCfg = Release|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Release SSSE3|Win32.Build.0 = Release|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Release|Win32.ActiveCfg = Release|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Release|Win32.Build.0 = Release|Win32 + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F}.Release|x64.ActiveCfg = Release|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Debug|Win32.ActiveCfg = Debug|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Debug|Win32.Build.0 = Debug|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Debug|x64.ActiveCfg = Debug|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Devel|Win32.ActiveCfg = Devel|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Devel|Win32.Build.0 = Devel|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Devel|x64.ActiveCfg = Devel|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Release SSE2|Win32.Build.0 = Release|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Release SSE2|x64.ActiveCfg = Release|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Release SSE4|Win32.Build.0 = Release|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Release SSE4|x64.ActiveCfg = Release|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Release SSSE3|Win32.Build.0 = Release|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Release|Win32.ActiveCfg = Release|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Release|Win32.Build.0 = Release|Win32 + {0318BA30-EF48-441A-9E10-DC85EFAE39F0}.Release|x64.ActiveCfg = Release|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Debug|Win32.ActiveCfg = Debug|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Debug|Win32.Build.0 = Debug|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Debug|x64.ActiveCfg = Debug|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Devel|Win32.ActiveCfg = Devel|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Devel|Win32.Build.0 = Devel|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Devel|x64.ActiveCfg = Debug|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Release SSE2|Win32.Build.0 = Release|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Release SSE2|x64.ActiveCfg = Release|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Release SSE4|Win32.Build.0 = Release|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Release SSE4|x64.ActiveCfg = Release|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Release SSSE3|Win32.Build.0 = Release|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Release|Win32.ActiveCfg = Release|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Release|Win32.Build.0 = Release|Win32 + {C34487AF-228A-4D11-8E50-27803DF76873}.Release|x64.ActiveCfg = Release|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Debug|Win32.ActiveCfg = Debug|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Debug|Win32.Build.0 = Debug|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Debug|x64.ActiveCfg = Debug|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Devel|Win32.ActiveCfg = Devel|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Devel|Win32.Build.0 = Devel|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Devel|x64.ActiveCfg = Devel|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Release SSE2|Win32.Build.0 = Release|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Release SSE2|x64.ActiveCfg = Release|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Release SSE4|Win32.Build.0 = Release|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Release SSE4|x64.ActiveCfg = Release|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Release SSSE3|Win32.Build.0 = Release|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Release|Win32.ActiveCfg = Release|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Release|Win32.Build.0 = Release|Win32 + {A51123F5-9505-4EAE-85E7-D320290A272C}.Release|x64.ActiveCfg = Release|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Debug|Win32.ActiveCfg = Debug|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Debug|Win32.Build.0 = Debug|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Debug|x64.ActiveCfg = Debug|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Devel|Win32.ActiveCfg = Devel|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Devel|Win32.Build.0 = Devel|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Devel|x64.ActiveCfg = Devel|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Release SSE2|Win32.Build.0 = Release|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Release SSE2|x64.ActiveCfg = Release|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Release SSE4|Win32.Build.0 = Release|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Release SSE4|x64.ActiveCfg = Release|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Release SSSE3|Win32.Build.0 = Release|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Release|Win32.ActiveCfg = Release|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Release|Win32.Build.0 = Release|Win32 + {4639972E-424E-4E13-8B07-CA403C481346}.Release|x64.ActiveCfg = Release|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Debug|Win32.ActiveCfg = Debug|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Debug|Win32.Build.0 = Debug|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Debug|x64.ActiveCfg = Debug|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Devel|Win32.ActiveCfg = Devel|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Devel|Win32.Build.0 = Devel|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Devel|x64.ActiveCfg = Devel|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Release SSE2|Win32.Build.0 = Release|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Release SSE2|x64.ActiveCfg = Release|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Release SSE4|Win32.Build.0 = Release|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Release SSE4|x64.ActiveCfg = Release|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Release SSSE3|Win32.Build.0 = Release|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Release|Win32.ActiveCfg = Release|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Release|Win32.Build.0 = Release|Win32 + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E}.Release|x64.ActiveCfg = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Debug|Win32.ActiveCfg = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Debug|Win32.Build.0 = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Debug|x64.ActiveCfg = Debug|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Devel|Win32.ActiveCfg = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Devel|Win32.Build.0 = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Devel|x64.ActiveCfg = Debug|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Release SSE2|Win32.Build.0 = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Release SSE2|x64.ActiveCfg = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Release SSE4|Win32.Build.0 = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Release SSE4|x64.ActiveCfg = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Release SSSE3|Win32.Build.0 = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Release|Win32.ActiveCfg = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Release|Win32.Build.0 = Release|Win32 + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213}.Release|x64.ActiveCfg = Release|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Debug|Win32.ActiveCfg = Debug|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Debug|Win32.Build.0 = Debug|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Debug|x64.ActiveCfg = Debug|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Devel|Win32.ActiveCfg = Devel|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Devel|Win32.Build.0 = Devel|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Devel|x64.ActiveCfg = Debug|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Release SSE2|Win32.Build.0 = Release|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Release SSE2|x64.ActiveCfg = Release|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Release SSE4|Win32.Build.0 = Release|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Release SSE4|x64.ActiveCfg = Release|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Release SSSE3|Win32.Build.0 = Release|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Release|Win32.ActiveCfg = Release|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Release|Win32.Build.0 = Release|Win32 + {BC236261-77E8-4567-8D09-45CD02965EB6}.Release|x64.ActiveCfg = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Debug|Win32.ActiveCfg = Debug|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Debug|Win32.Build.0 = Debug|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Debug|x64.ActiveCfg = Debug|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Devel|Win32.ActiveCfg = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Devel|Win32.Build.0 = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Devel|x64.ActiveCfg = Devel|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Release SSE2|Win32.Build.0 = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Release SSE2|x64.ActiveCfg = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Release SSE4|Win32.Build.0 = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Release SSE4|x64.ActiveCfg = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Release SSSE3|Win32.Build.0 = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Release|Win32.ActiveCfg = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Release|Win32.Build.0 = Release|Win32 + {067D7863-393B-494F-B296-4A8853EB3D1D}.Release|x64.ActiveCfg = Release|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Debug|Win32.ActiveCfg = Debug|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Debug|Win32.Build.0 = Debug|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Debug|x64.ActiveCfg = Debug|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Devel|Win32.ActiveCfg = Devel|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Devel|Win32.Build.0 = Devel|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Devel|x64.ActiveCfg = Devel|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Release SSE2|Win32.Build.0 = Release|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Release SSE2|x64.ActiveCfg = Release|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Release SSE4|Win32.Build.0 = Release|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Release SSE4|x64.ActiveCfg = Release|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Release SSSE3|Win32.Build.0 = Release|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Release|Win32.ActiveCfg = Release|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Release|Win32.Build.0 = Release|Win32 + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86}.Release|x64.ActiveCfg = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Debug SSE2|Win32.Build.0 = Debug|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Debug SSE4|Win32.Build.0 = Debug|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Debug SSSE3|Win32.Build.0 = Debug|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Debug|Win32.ActiveCfg = Debug|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Debug|Win32.Build.0 = Debug|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Debug|x64.ActiveCfg = Debug|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Devel|Win32.ActiveCfg = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Devel|Win32.Build.0 = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Devel|x64.ActiveCfg = Debug|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Release SSE2|Win32.Build.0 = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Release SSE2|x64.ActiveCfg = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Release SSE4|Win32.Build.0 = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Release SSE4|x64.ActiveCfg = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Release SSSE3|Win32.Build.0 = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Release|Win32.ActiveCfg = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Release|Win32.Build.0 = Release|Win32 + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A}.Release|x64.ActiveCfg = Release|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Debug|Win32.ActiveCfg = Debug|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Debug|Win32.Build.0 = Debug|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Debug|x64.ActiveCfg = Debug|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Devel|Win32.ActiveCfg = Debug|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Devel|Win32.Build.0 = Debug|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Devel|x64.ActiveCfg = Debug|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Release SSE2|Win32.Build.0 = Release|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Release SSE2|x64.ActiveCfg = Release|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Release SSE4|Win32.Build.0 = Release|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Release SSE4|x64.ActiveCfg = Release|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Release SSSE3|Win32.Build.0 = Release|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Release|Win32.ActiveCfg = Release|Win32 + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101}.Release|x64.ActiveCfg = Release|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Debug|Win32.ActiveCfg = Debug|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Debug|Win32.Build.0 = Debug|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Debug|x64.ActiveCfg = Debug|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Devel|Win32.ActiveCfg = Debug|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Devel|Win32.Build.0 = Debug|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Devel|x64.ActiveCfg = Debug|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Release SSE2|Win32.Build.0 = Release|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Release SSE2|x64.ActiveCfg = Release|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Release SSE4|Win32.Build.0 = Release|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Release SSE4|x64.ActiveCfg = Release|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Release SSSE3|Win32.Build.0 = Release|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Release|Win32.ActiveCfg = Release|Win32 + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9}.Release|x64.ActiveCfg = Release|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Debug|Win32.ActiveCfg = Debug|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Debug|Win32.Build.0 = Debug|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Debug|x64.ActiveCfg = Debug|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Devel|Win32.ActiveCfg = Debug|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Devel|Win32.Build.0 = Debug|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Devel|x64.ActiveCfg = Debug|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Release SSE2|Win32.Build.0 = Release|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Release SSE2|x64.ActiveCfg = Release|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Release SSE4|Win32.Build.0 = Release|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Release SSE4|x64.ActiveCfg = Release|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Release SSSE3|Win32.Build.0 = Release|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Release|Win32.ActiveCfg = Release|Win32 + {6BC4D85D-A399-407E-96A9-CD5416A54269}.Release|x64.ActiveCfg = Release|Win32 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Debug SSE2|Win32.ActiveCfg = Debug (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Debug SSE2|x64.ActiveCfg = Debug (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Debug SSE2|x64.Build.0 = Debug (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Debug SSE4|Win32.ActiveCfg = Debug (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Debug SSE4|x64.ActiveCfg = Debug (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Debug SSE4|x64.Build.0 = Debug (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Debug SSSE3|Win32.ActiveCfg = Debug (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Debug SSSE3|x64.ActiveCfg = Debug (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Debug SSSE3|x64.Build.0 = Debug (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Debug|Win32.ActiveCfg = Debug (NO ASIO)|Win32 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Debug|Win32.Build.0 = Debug (NO ASIO)|Win32 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Debug|x64.ActiveCfg = Debug|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Debug|x64.Build.0 = Debug|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Devel|Win32.ActiveCfg = Release (NO ASIO)|Win32 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Devel|Win32.Build.0 = Release (NO ASIO)|Win32 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Devel|x64.ActiveCfg = Debug|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Devel|x64.Build.0 = Debug|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release SSE2|Win32.ActiveCfg = Release (NO ASIO)|Win32 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release SSE2|Win32.Build.0 = Release (NO ASIO)|Win32 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release SSE2|x64.ActiveCfg = Release (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release SSE2|x64.Build.0 = Release (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release SSE4|Win32.ActiveCfg = Release (NO ASIO)|Win32 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release SSE4|Win32.Build.0 = Release (NO ASIO)|Win32 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release SSE4|x64.ActiveCfg = Release (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release SSE4|x64.Build.0 = Release (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release SSSE3|Win32.ActiveCfg = Release (NO ASIO)|Win32 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release SSSE3|Win32.Build.0 = Release (NO ASIO)|Win32 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release SSSE3|x64.ActiveCfg = Release (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release SSSE3|x64.Build.0 = Release (NO ASIO)|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release|Win32.ActiveCfg = Release|Win32 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release|Win32.Build.0 = Release|Win32 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release|x64.ActiveCfg = Release|x64 + {0A18A071-125E-442F-AFF7-A3F68ABECF99}.Release|x64.Build.0 = Release|x64 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Debug SSE2|Win32.ActiveCfg = Debug|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Debug SSE2|x64.ActiveCfg = Debug|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Debug SSE4|Win32.ActiveCfg = Debug|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Debug SSE4|x64.ActiveCfg = Debug|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Debug SSSE3|Win32.ActiveCfg = Debug|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Debug SSSE3|x64.ActiveCfg = Debug|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Debug|Win32.ActiveCfg = Debug|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Debug|Win32.Build.0 = Debug|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Debug|x64.ActiveCfg = Debug|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Devel|Win32.ActiveCfg = Devel|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Devel|Win32.Build.0 = Devel|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Devel|x64.ActiveCfg = Devel|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Release SSE2|Win32.ActiveCfg = Release|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Release SSE2|Win32.Build.0 = Release|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Release SSE2|x64.ActiveCfg = Release|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Release SSE4|Win32.ActiveCfg = Release|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Release SSE4|Win32.Build.0 = Release|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Release SSE4|x64.ActiveCfg = Release|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Release SSSE3|Win32.ActiveCfg = Release|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Release SSSE3|Win32.Build.0 = Release|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Release SSSE3|x64.ActiveCfg = Release|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Release|Win32.ActiveCfg = Release|Win32 + {2D4E85B2-F47F-4D65-B091-701E5C031DAC}.Release|x64.ActiveCfg = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47} = {A306AA7F-A984-407A-A37D-3275979368C4} - {26511268-2902-4997-8421-ECD7055F9E28} = {A306AA7F-A984-407A-A37D-3275979368C4} - {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB} = {10757E7A-E2B8-4FD3-9194-71331BF36D13} - {18E42F6F-3A62-41EE-B42F-79366C4F1E95} = {10757E7A-E2B8-4FD3-9194-71331BF36D13} - {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A} = {10757E7A-E2B8-4FD3-9194-71331BF36D13} + {E1828E40-2FBB-48FE-AE7F-5587755DCE0E} = {703FD00B-D7A0-41E3-BD03-CEC86B385DAF} + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8} = {703FD00B-D7A0-41E3-BD03-CEC86B385DAF} + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3} = {703FD00B-D7A0-41E3-BD03-CEC86B385DAF} + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4} = {703FD00B-D7A0-41E3-BD03-CEC86B385DAF} + {18E42F6F-3A62-41EE-B42F-79366C4F1E95} = {703FD00B-D7A0-41E3-BD03-CEC86B385DAF} + {E4081455-398C-4610-A87C-90A8A7D72DC3} = {703FD00B-D7A0-41E3-BD03-CEC86B385DAF} + {7F059854-568D-4E08-9D00-1E78E203E4DC} = {703FD00B-D7A0-41E3-BD03-CEC86B385DAF} + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A} = {703FD00B-D7A0-41E3-BD03-CEC86B385DAF} + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB} = {703FD00B-D7A0-41E3-BD03-CEC86B385DAF} + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A} = {703FD00B-D7A0-41E3-BD03-CEC86B385DAF} + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9} = {703FD00B-D7A0-41E3-BD03-CEC86B385DAF} + {2D4E85B2-F47F-4D65-B091-701E5C031DAC} = {703FD00B-D7A0-41E3-BD03-CEC86B385DAF} + {E9B51944-7E6D-4BCD-83F2-7BBD5A46182D} = {78EBE642-7A4D-4EA7-86BE-5639C6646C38} + {2F6C0388-20CB-4242-9F6C-A6EBB6A83F47} = {78EBE642-7A4D-4EA7-86BE-5639C6646C38} + {F4EB4AB2-C595-4B05-8BC0-059024BC796C} = {78EBE642-7A4D-4EA7-86BE-5639C6646C38} + {26511268-2902-4997-8421-ECD7055F9E28} = {78EBE642-7A4D-4EA7-86BE-5639C6646C38} + {48AD7E0A-25B1-4974-A1E3-03F8C438D34F} = {78EBE642-7A4D-4EA7-86BE-5639C6646C38} + {0318BA30-EF48-441A-9E10-DC85EFAE39F0} = {78EBE642-7A4D-4EA7-86BE-5639C6646C38} + {C34487AF-228A-4D11-8E50-27803DF76873} = {78EBE642-7A4D-4EA7-86BE-5639C6646C38} + {0E231FB1-F3C9-4724-ACCB-DE8BCB3C089E} = {78EBE642-7A4D-4EA7-86BE-5639C6646C38} + {BC236261-77E8-4567-8D09-45CD02965EB6} = {78EBE642-7A4D-4EA7-86BE-5639C6646C38} + {067D7863-393B-494F-B296-4A8853EB3D1D} = {78EBE642-7A4D-4EA7-86BE-5639C6646C38} + {7E9B2BE7-CEC3-4F14-847B-0AB8D562FB86} = {78EBE642-7A4D-4EA7-86BE-5639C6646C38} + {0A18A071-125E-442F-AFF7-A3F68ABECF99} = {78EBE642-7A4D-4EA7-86BE-5639C6646C38} + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0} = {E1828E40-2FBB-48FE-AE7F-5587755DCE0E} + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70} = {E1828E40-2FBB-48FE-AE7F-5587755DCE0E} + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C} = {E1828E40-2FBB-48FE-AE7F-5587755DCE0E} + {04439C5F-05FB-4A9C-AAD1-5388C25377DB} = {E1828E40-2FBB-48FE-AE7F-5587755DCE0E} + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101} = {E1828E40-2FBB-48FE-AE7F-5587755DCE0E} + {6BC4D85D-A399-407E-96A9-CD5416A54269} = {E1828E40-2FBB-48FE-AE7F-5587755DCE0E} + {0FADC26C-0E9D-4DD7-84B1-BF4F7754E90C} = {88F517F9-CE1C-4005-9BDF-4481FEB55053} + {A51123F5-9505-4EAE-85E7-D320290A272C} = {88F517F9-CE1C-4005-9BDF-4481FEB55053} + {4639972E-424E-4E13-8B07-CA403C481346} = {88F517F9-CE1C-4005-9BDF-4481FEB55053} + {62BF822E-6A12-49A8-BE8C-C55A9BCA24DA} = {0FADC26C-0E9D-4DD7-84B1-BF4F7754E90C} + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213} = {2D6F0A62-A247-4CCF-947F-FCD54BE16103} EndGlobalSection EndGlobal diff --git a/plugins/CDVDiso/src/Windows/CDVDiso.vcxproj b/plugins/CDVDiso/src/Windows/CDVDiso.vcxproj new file mode 100644 index 0000000000..9e8170e359 --- /dev/null +++ b/plugins/CDVDiso/src/Windows/CDVDiso.vcxproj @@ -0,0 +1,162 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + CDVDiso + {5F78E90B-BD22-47B1-9CA5-7A80F4DF5EF3} + CDVDiso + + + + DynamicLibrary + false + MultiByte + false + + + DynamicLibrary + false + MultiByte + true + + + DynamicLibrary + false + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(Configuration)\ + true + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + Disabled + + + + + bzip2.lib;zlib.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)-dbg.dll + .\CDVDiso.def + MachineX86 + + + + + NDEBUG;%(PreprocessorDefinitions) + + + + + bzip2.lib;zlib.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName).dll + .\CDVDiso.def + true + MachineX86 + + + + + NDEBUG;%(PreprocessorDefinitions) + + + Level3 + ProgramDatabase + + + bzip2.lib;zlib.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName).dll + .\CDVDiso.def + true + MachineX86 + + + + + CompileAsCpp + CompileAsCpp + + + CompileAsCpp + CompileAsCpp + + + CompileAsCpp + CompileAsCpp + + + CompileAsCpp + CompileAsCpp + + + + + + + + + + + + + + {f4eb4ab2-c595-4b05-8bc0-059024bc796c} + false + + + {2f6c0388-20cb-4242-9f6c-a6ebb6a83f47} + false + + + + + + \ No newline at end of file diff --git a/plugins/CDVDiso/src/Windows/CDVDiso.vcxproj.filters b/plugins/CDVDiso/src/Windows/CDVDiso.vcxproj.filters new file mode 100644 index 0000000000..46f33e8fe0 --- /dev/null +++ b/plugins/CDVDiso/src/Windows/CDVDiso.vcxproj.filters @@ -0,0 +1,50 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;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;tiff;tif;png;wav + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/plugins/CDVDnull/Windows/CDVDnull.vcxproj b/plugins/CDVDnull/Windows/CDVDnull.vcxproj new file mode 100644 index 0000000000..6275f3103d --- /dev/null +++ b/plugins/CDVDnull/Windows/CDVDnull.vcxproj @@ -0,0 +1,72 @@ + + + + + Release + Win32 + + + + CDVDnull + {F38D9DF0-F68D-49D9-B3A0-932E74FB74A0} + CDVDnull + + + + DynamicLibrary + MultiByte + true + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + false + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + + + NDEBUG;_USRDLL;CDVDNULL_EXPORTS;%(PreprocessorDefinitions) + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x2c0a + + + /MACHINE:I386 %(AdditionalOptions) + odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + true + .\CDVDnull.def + false + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/CDVDnull/Windows/CDVDnull.vcxproj.filters b/plugins/CDVDnull/Windows/CDVDnull.vcxproj.filters new file mode 100644 index 0000000000..03451ae10b --- /dev/null +++ b/plugins/CDVDnull/Windows/CDVDnull.vcxproj.filters @@ -0,0 +1,24 @@ + + + + + {4a528d75-fc57-4a25-8f63-9efd961ebaac} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + + + Source Files + + + + + Source Files + + + + + Source Files + + + \ No newline at end of file diff --git a/plugins/CDVDolio/cdvd.vcxproj b/plugins/CDVDolio/cdvd.vcxproj index 6edc477f0e..94fa1c9de5 100644 --- a/plugins/CDVDolio/cdvd.vcxproj +++ b/plugins/CDVDolio/cdvd.vcxproj @@ -1,22 +1,115 @@ - + + + + Debug SSE2 + Win32 + + + Debug SSE2 + x64 + + + Debug SSE4 + Win32 + + + Debug SSE4 + x64 + + + Debug SSSE3 + Win32 + + + Debug SSSE3 + x64 + Debug Win32 + + Debug + x64 + + + Release SSE2 + Win32 + + + Release SSE2 + x64 + + + Release SSE4 + Win32 + + + Release SSE4 + x64 + + + Release SSSE3 + Win32 + + + Release SSSE3 + x64 + Release Win32 + + Release + x64 + + + Template + Win32 + + + Template + x64 + CDVDolio - {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB} + {FCDF5AE2-EA47-4CC6-9F20-23A0517FEBCB} cdvd Win32Proj - + + DynamicLibrary + false + MultiByte + true + + + DynamicLibrary + false + MultiByte + + + DynamicLibrary + false + MultiByte + + + DynamicLibrary + false + MultiByte + true + + + DynamicLibrary + false + MultiByte + true + + DynamicLibrary false MultiByte @@ -27,27 +120,195 @@ MultiByte true + + DynamicLibrary + false + MultiByte + + + Application + + + DynamicLibrary + Static + MultiByte + true + + + DynamicLibrary + Static + MultiByte + + + DynamicLibrary + Static + MultiByte + + + DynamicLibrary + Static + MultiByte + true + + + DynamicLibrary + Static + MultiByte + true + + + DynamicLibrary + Static + MultiByte + false + + + DynamicLibrary + Static + MultiByte + true + + + DynamicLibrary + Static + MultiByte + - - + + + + + + + + - - - - - + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - <_ProjectFileVersion>10.0.20506.1 + <_ProjectFileVersion>10.0.30319.1 + $(Configuration)\ @@ -61,6 +322,21 @@ MachineX86 + + + X64 + + + Use + + + + + + + MachineX64 + + Use @@ -72,20 +348,183 @@ MachineX86 - + + + + X64 + + + Use + + + + + + + MachineX64 + + + + + Use + + + .\cdvd.def + %(DelayLoadDLLs) + + + MachineX86 + + + + + Use + + + + + MachineX64 + + + + + Use + + + .\cdvd.def + %(DelayLoadDLLs) + + + MachineX86 + + + + + Use + + + + + MachineX64 + + + + + Use + + + .\cdvd.def + %(DelayLoadDLLs) + + + MachineX86 + + + + + Use + + + + + MachineX64 + + + + + Use + + + .\cdvd.def + %(DelayLoadDLLs) + + + MachineX86 + + + + + Use + + + + + MachineX64 + + + + + Use + + + .\cdvd.def + %(DelayLoadDLLs) + + + MachineX86 + + + + + X64 + + + Use + + + + + MachineX64 + + + + + Use + + + .\cdvd.def + %(DelayLoadDLLs) + + + MachineX86 + + + + + X64 + + + Use + + + + + MachineX64 + + Create + Create + Create + Create + Create + Create Create + Create + Create + Create + Create + Create + Create + Create Create + Create - - - @@ -93,12 +532,20 @@ - + + + + + + + + + \ No newline at end of file diff --git a/plugins/CDVDolio/cdvd.vcxproj.filters b/plugins/CDVDolio/cdvd.vcxproj.filters index a34d6414dc..cd1c662dc2 100644 --- a/plugins/CDVDolio/cdvd.vcxproj.filters +++ b/plugins/CDVDolio/cdvd.vcxproj.filters @@ -1,6 +1,10 @@  + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + {93995380-89BD-4b04-88EB-625FBE52EBFB} h;hpp;hxx;hm;inl;inc;xsd @@ -9,10 +13,6 @@ {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - @@ -28,11 +28,6 @@ Source Files - - - Resource Files - - Source Files @@ -48,9 +43,6 @@ Header Files - - Resource Files - Header Files @@ -60,5 +52,13 @@ Header Files + + Resource Files + + + + + Resource Files + \ No newline at end of file diff --git a/plugins/FWnull/Windows/FWnull.vcxproj b/plugins/FWnull/Windows/FWnull.vcxproj new file mode 100644 index 0000000000..ac4833264a --- /dev/null +++ b/plugins/FWnull/Windows/FWnull.vcxproj @@ -0,0 +1,88 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + FWnull + {3D0EB14D-32F3-4D82-9C6D-B806ADBB859C} + FWnull + Win32Proj + + + + DynamicLibrary + MultiByte + true + + + DynamicLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + + + + + + + + $(OutDir)$(ProjectName)-dbg.dll + FireWireNull.def + false + MachineX86 + + + + + + + + + FireWireNull.def + false + MachineX86 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/FWnull/Windows/FWnull.vcxproj.filters b/plugins/FWnull/Windows/FWnull.vcxproj.filters new file mode 100644 index 0000000000..bc9405fe2f --- /dev/null +++ b/plugins/FWnull/Windows/FWnull.vcxproj.filters @@ -0,0 +1,38 @@ + + + + + {9f8ea85e-c353-4a00-870a-573daa04f2d4} + cpp;c;cxx;def;odl;idl;hpj;bat;asm + + + {5090ab82-143a-459e-b92d-5bdb2847f6bc} + h;hpp;hxx;hm;inl;inc + + + {df8b3ed3-4204-43dd-9ddb-17f06e45b699} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/plugins/GSdx/GSdx.vcxproj b/plugins/GSdx/GSdx.vcxproj index 3981b03df5..ac3d66c388 100644 --- a/plugins/GSdx/GSdx.vcxproj +++ b/plugins/GSdx/GSdx.vcxproj @@ -1,208 +1,395 @@ - + + Debug SSE2 Win32 - + Debug SSE2 - Win32 + x64 Debug SSE4 Win32 - + Debug SSE4 - Win32 + x64 Debug SSSE3 Win32 - + Debug SSSE3 - Win32 + x64 Debug Win32 - + Debug - Win32 + x64 Release SSE2 Win32 - + Release SSE2 - Win32 + x64 Release SSE4 Win32 - + Release SSE4 - Win32 + x64 Release SSSE3 Win32 - + Release SSSE3 - Win32 + x64 Release Win32 - + Release + x64 + + + Template Win32 + + Template + x64 + GSdx - {18E42F6F-3A62-41EE-B42F-79366C4F1E95} + {18E42F6F-3A62-41EE-B42F-79366C4F1E95} GSdx Win32Proj - - DynamicLibrary - MultiByte - + Application + + + Application + + DynamicLibrary + false MultiByte true - + DynamicLibrary + false MultiByte - + DynamicLibrary + false + MultiByte + + + DynamicLibrary + false MultiByte true - + DynamicLibrary + false MultiByte true - + DynamicLibrary + false MultiByte - - DynamicLibrary - MultiByte + + Application - + DynamicLibrary + Static MultiByte true + + DynamicLibrary + Static + MultiByte + + + DynamicLibrary + Static + MultiByte + true + + + DynamicLibrary + Static + MultiByte + + + DynamicLibrary + Static + MultiByte + + + DynamicLibrary + Static + MultiByte + true + + + DynamicLibrary + Static + MultiByte + true + + + DynamicLibrary + Static + MultiByte + false + - - + + + - - - - - + + - - - - - + + + + + + + + + - - - - - - + + + + + + + + + - - - - - - + + + + + + + + + - - - - - - + + + + + + + + + - - - - - - + + + + + + + + + - - - - - - + + + + + + + + + - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - <_ProjectFileVersion>10.0.20506.1 + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Configuration)\ + $(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Configuration)\ + $(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + - - - Use - - - .\GSdx.def - - - MachineX86 - - - - - Use - - - .\GSdx.def - - - MachineX86 - - Use + $(OutDir)$(ProjectName)-$(SSEtype)-dbg.dll + $(SvnRootDir)\deps\$(Platform)\Debug;%(AdditionalLibraryDirectories) .\GSdx.def + MachineX86 + + + + + Use + + - MachineX86 + MachineX64 @@ -210,10 +397,19 @@ Use + $(SvnRootDir)\deps\$(Platform)\Release;%(AdditionalLibraryDirectories) .\GSdx.def + MachineX86 + + + + + Use + + - MachineX86 + MachineX64 @@ -221,7 +417,16 @@ Use + $(SvnRootDir)\deps\$(Platform)\Release;%(AdditionalLibraryDirectories) .\GSdx.def + MachineX86 + + + + + Use + + MachineX86 @@ -232,10 +437,20 @@ Use + $(OutDir)$(ProjectName)-$(SSEtype)-dbg.dll + $(SvnRootDir)\deps\$(Platform)\Debug;%(AdditionalLibraryDirectories) .\GSdx.def + MachineX86 + + + + + Use + + - MachineX86 + MachineX64 @@ -243,10 +458,23 @@ Use + $(OutDir)$(ProjectName)-$(SSEtype)-dbg.dll + $(SvnRootDir)\deps\$(Platform)\Debug;%(AdditionalLibraryDirectories) .\GSdx.def + MachineX86 + + + + + X64 + + + Use + + - MachineX86 + MachineX64 @@ -254,511 +482,916 @@ Use + $(SvnRootDir)\deps\$(Platform)\Release;%(AdditionalLibraryDirectories) .\GSdx.def - - MachineX86 + + + X64 + + + Use + + + + + MachineX64 + + + + + $(SvnRootDir)\deps\$(Platform)\Debug;%(AdditionalLibraryDirectories) + + + + + X64 + + + Use + + + + + + + MachineX64 + + + + + $(SvnRootDir)\deps\$(Platform)\Release;%(AdditionalLibraryDirectories) + + + + + X64 + + + Use + + + + + + + MachineX64 + + - - - - - - - - - - - - - - - - - + + AssemblyAndSourceCode - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + AssemblyAndSourceCode + + + AssemblyAndSourceCode + - - - - + + AssemblyAndSourceCode + AssemblyAndSourceCode + AssemblyAndSourceCode + - + + AssemblyAndSourceCode + AssemblyAndSourceCode + AssemblyAndSourceCode + AssemblyAndSourceCode + - + + AssemblyAndSourceCode + AssemblyAndSourceCode + AssemblyAndSourceCode + - - - + + AssemblyAndSourceCode + AssemblyAndSourceCode + + - - + + AssemblyAndSourceCode + AssemblyAndSourceCode + AssemblyAndSourceCode + AssemblyAndSourceCode + - - - - + + AssemblyAndSourceCode + - - - - + + AssemblyAndSourceCode + - - + + AssemblyAndSourceCode + - Create - Create Create - Create - Create - Create + Create Create + Create + Create + Create + Create + Create + Create Create + Create + Create + Create + Create + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -788,110 +1421,45 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + {067d7863-393b-494f-b296-4a8853eb3d1d} + false + + + {26511268-2902-4997-8421-ecd7055f9e28} + false + + + {7e9b2be7-cec3-4f14-847b-0ab8d562fb86} + false + + + + + + + \ No newline at end of file diff --git a/plugins/GSdx/GSdx.vcxproj.filters b/plugins/GSdx/GSdx.vcxproj.filters index 0d818f5e9c..418a5acd17 100644 --- a/plugins/GSdx/GSdx.vcxproj.filters +++ b/plugins/GSdx/GSdx.vcxproj.filters @@ -1,8 +1,9 @@  - - {14a43ae4-91f3-4405-a71c-c8f2d790e36b} + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx {93995380-89BD-4b04-88EB-625FBE52EBFB} @@ -13,17 +14,172 @@ rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - {e281bf48-1466-4355-b176-a117cc2dce40} + {6d029896-e5fd-4b46-8576-52d7d90125e6} - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + {3c2d6a4a-ff5a-420d-a0f7-4c17cc5c19df} - {62920db0-8592-425e-aa2f-9a2a7e85d851} + {d6fcc23b-bc82-4390-8a9a-928910bc4123} + + 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 + + + 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 + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + Baseclasses @@ -93,227 +249,185 @@ Baseclasses - - 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 - - - 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 - - - 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 - - - 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 + + + 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 + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Resource Files + Baseclasses @@ -401,258 +515,6 @@ Baseclasses - - 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 - - - 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 - - - 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 - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Resource Files - - - Header Files - - - Header Files - Xbyak @@ -667,20 +529,8 @@ - - Baseclasses - - - Baseclasses - - Source Files - - - Shaders - - - Shaders + Resource Files Resource Files @@ -688,12 +538,24 @@ Resource Files + + Shaders + + + Shaders + Shaders Shaders + + Baseclasses + + + Baseclasses + diff --git a/plugins/GSdx/GSdx_vs2008.vcproj b/plugins/GSdx/GSdx_vs2008.vcproj index 9198abf3ab..277d9845f5 100644 --- a/plugins/GSdx/GSdx_vs2008.vcproj +++ b/plugins/GSdx/GSdx_vs2008.vcproj @@ -1,7 +1,7 @@ + + + + Debug + Win32 + + + Release + Win32 + + + + GSnull + {5FCBD521-5A0B-4D97-A823-A97E6BAB9101} + GSnull + Win32Proj + + + + DynamicLibrary + MultiByte + true + + + DynamicLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + + + + + + + + $(OutDir)$(ProjectName)-dbg.dll + GS.def + MachineX86 + + + + + + + + + GS.def + MachineX86 + + + + + + + + true + true + + + + + + + + + + true + true + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/GSnull/Windows/GSnull.vcxproj.filters b/plugins/GSnull/Windows/GSnull.vcxproj.filters new file mode 100644 index 0000000000..50b6441761 --- /dev/null +++ b/plugins/GSnull/Windows/GSnull.vcxproj.filters @@ -0,0 +1,72 @@ + + + + + {c3be7c7d-acc0-4d04-87e2-d8c905f5623d} + cpp;c;cxx;def;odl;idl;hpj;bat;asm + + + {d049a6c7-ffed-4403-8697-c32b110473ec} + h;hpp;hxx;hm;inl;inc + + + {43d885bc-a996-4dc7-935e-c5511250143e} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + + + Resource Files + + + + + Resource Files + + + + + Header Files + + + \ No newline at end of file diff --git a/plugins/LilyPad/LilyPad.vcxproj b/plugins/LilyPad/LilyPad.vcxproj new file mode 100644 index 0000000000..257cda538a --- /dev/null +++ b/plugins/LilyPad/LilyPad.vcxproj @@ -0,0 +1,501 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release No CRT + Win32 + + + Release No CRT + x64 + + + Release + Win32 + + + Release + x64 + + + + LilyPad + {E4081455-398C-4610-A87C-90A8A7D72DC3} + LilyPad + + + + DynamicLibrary + false + MultiByte + true + + + DynamicLibrary + false + MultiByte + true + + + DynamicLibrary + false + MultiByte + + + DynamicLibrary + false + MultiByte + false + + + DynamicLibrary + false + MultiByte + true + + + DynamicLibrary + false + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + false + false + false + true + false + false + false + false + false + false + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + + + + + _USRDLL;TEST_EXPORTS;%(PreprocessorDefinitions) + Use + Global.h + 4995; 4996;%(DisableSpecificWarnings) + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Setupapi.lib;Winmm.lib;ole32.lib;advapi32.lib;user32.lib;kernel32.lib;Comdlg32.lib;dinput8.lib;dxguid.lib;comctl32.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)-dbg.dll + .\LilyPad.def + false + MachineX86 + + + true + .\Debug/LilyPad.bsc + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + + + + + NDEBUG;_USRDLL;TEST_EXPORTS;%(PreprocessorDefinitions) + + + Use + Global.h + FastCall + 4995; 4996;%(DisableSpecificWarnings) + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Setupapi.lib;Winmm.lib;ole32.lib;advapi32.lib;user32.lib;kernel32.lib;Comdlg32.lib;dinput8.lib;dxguid.lib;comctl32.lib;%(AdditionalDependencies) + true + .\LilyPad.def + true + true + + + false + + + MachineX86 + + + true + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + + + + + false + NDEBUG;_USRDLL;TEST_EXPORTS;NO_CRT;%(PreprocessorDefinitions) + + + Use + Global.h + FastCall + 4995; 4996;%(DisableSpecificWarnings) + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + ntdll.lib;Setupapi.lib;Winmm.lib;ole32.lib;advapi32.lib;user32.lib;kernel32.lib;Comdlg32.lib;dinput8.lib;dxguid.lib;comctl32.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)-no CRT.dll + true + true + .\LilyPad.def + true + true + + + DllMain + false + MachineX86 + + + true + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + + + + + Disabled + WIN32;_DEBUG;_WINDOWS;_USRDLL;TEST_EXPORTS;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebug + Use + Global.h + Level3 + true + ProgramDatabase + 4995; 4996;%(DisableSpecificWarnings) + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + ntdll.lib;Setupapi.lib;Winmm.lib;ole32.lib;advapi32.lib;user32.lib;kernel32.lib;Comdlg32.lib;dinput8.lib;dxguid.lib;comctl32.lib;%(AdditionalDependencies) + true + true + MachineX64 + + + true + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + + + + + AnySuitable + Speed + true + true + true + WIN32;NDEBUG;_WINDOWS;_USRDLL;TEST_EXPORTS;%(PreprocessorDefinitions) + true + + + MultiThreadedDLL + false + true + Fast + Use + Global.h + Level3 + true + FastCall + 4995; 4996;%(DisableSpecificWarnings) + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + odbc32.lib;odbccp32.lib;dinput8.lib;dxguid.lib;comctl32.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)64.dll + true + .\LilyPad.def + true + true + DllMain + false + MachineX86 + + + true + .\Release/LilyPad.bsc + + + mt.exe -manifest $(IntDir)LilyPad64.dll.manifest -outputresource:$(OutDir)$(ProjectName)64.dll + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + + + + + AnySuitable + Speed + true + true + false + WIN32;NDEBUG;_WINDOWS;_USRDLL;TEST_EXPORTS;%(PreprocessorDefinitions) + true + + + MultiThreadedDLL + false + true + Fast + Use + Global.h + FastCall + 4995; 4996;%(DisableSpecificWarnings) + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + ntdll.lib;Setupapi.lib;Winmm.lib;ole32.lib;advapi32.lib;user32.lib;kernel32.lib;Comdlg32.lib;dinput8.lib;dxguid.lib;comctl32.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)64.dll + true + true + .\LilyPad.def + true + true + + + 0x15000000 + MachineX64 + + + true + .\Release No CRT/LilyPad.bsc + + + mt.exe -manifest $(IntDir)LilyPad64.dll.manifest -outputresource:$(OutDir)$(ProjectName)64.dll + + + + + %(PreprocessorDefinitions) + %(PreprocessorDefinitions) + MaxSpeed + %(PreprocessorDefinitions) + MaxSpeed + Size + %(PreprocessorDefinitions) + MaxSpeed + %(PreprocessorDefinitions) + MaxSpeed + Size + %(PreprocessorDefinitions) + + + + %(PreprocessorDefinitions) + %(PreprocessorDefinitions) + MaxSpeed + %(PreprocessorDefinitions) + MaxSpeed + Size + %(PreprocessorDefinitions) + MaxSpeed + %(PreprocessorDefinitions) + MaxSpeed + Size + %(PreprocessorDefinitions) + + + Create + Create + Create + Create + Create + Create + + + + + + + + + + + + + + + %(PreprocessorDefinitions) + %(PreprocessorDefinitions) + MaxSpeed + %(PreprocessorDefinitions) + MaxSpeed + Size + %(PreprocessorDefinitions) + MaxSpeed + %(PreprocessorDefinitions) + MaxSpeed + Size + %(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + %(PreprocessorDefinitions) + %(PreprocessorDefinitions) + %(PreprocessorDefinitions) + %(PreprocessorDefinitions) + %(PreprocessorDefinitions) + %(PreprocessorDefinitions) + + + + + + \ No newline at end of file diff --git a/plugins/LilyPad/LilyPad.vcxproj.filters b/plugins/LilyPad/LilyPad.vcxproj.filters new file mode 100644 index 0000000000..4245c7416d --- /dev/null +++ b/plugins/LilyPad/LilyPad.vcxproj.filters @@ -0,0 +1,151 @@ + + + + + {c3444fe6-e86c-41ad-b284-9aaa0085018c} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {3dc117c4-127f-4132-8d90-a21203ff7c9a} + h;hpp;hxx;hm;inl + + + {acd9ab42-6216-4bd0-a5b5-b849e2d1ba3f} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + {15d8bba0-4d93-410e-9892-ff6062a6a6c0} + + + {0ef876e2-98b1-4cf0-8733-7cfe1a728411} + + + + + Source Files + + + Source Files + + + Source Files + + + Header Files + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + Input + + + Input + + + Input + + + Input + + + + + Source Files + + + Source Files + + + Header Files + + + Header Files + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + InputAPIs + + + Input + + + Input + + + Input + + + Input + + + + + Resource Files + + + Resource Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/plugins/PadNull/Windows/PadNull.vcxproj b/plugins/PadNull/Windows/PadNull.vcxproj new file mode 100644 index 0000000000..9285111124 --- /dev/null +++ b/plugins/PadNull/Windows/PadNull.vcxproj @@ -0,0 +1,105 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + Padnull + {6BC4D85D-A399-407E-96A9-CD5416A54269} + Padnull + Win32Proj + + + + DynamicLibrary + MultiByte + true + + + DynamicLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + + + + Disabled + EnableFastChecks + MultiThreadedDebug + + + + + PadNull.def + false + MachineX86 + + + + + MaxSpeed + AnySuitable + true + MultiThreaded + + + + + PadNull.def + false + MachineX86 + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/PadNull/Windows/PadNull.vcxproj.filters b/plugins/PadNull/Windows/PadNull.vcxproj.filters new file mode 100644 index 0000000000..2f9353e11d --- /dev/null +++ b/plugins/PadNull/Windows/PadNull.vcxproj.filters @@ -0,0 +1,52 @@ + + + + + {ea821597-bb54-4b64-bf78-6dac5a784811} + cpp;c;cxx;def;odl;idl;hpj;bat;asm + + + {0899555b-4159-4c99-8d04-8c7c39430402} + h;hpp;hxx;hm;inl;inc + + + {995a9f7e-492c-425a-8736-4481f7a54804} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + + + Resource Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/plugins/SSSPSXPAD/PadSSSPSX.vcxproj b/plugins/SSSPSXPAD/PadSSSPSX.vcxproj new file mode 100644 index 0000000000..146ab2882d --- /dev/null +++ b/plugins/SSSPSXPAD/PadSSSPSX.vcxproj @@ -0,0 +1,104 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + PadSSSPSX + {6C8D28E4-447E-4856-BD9E-6B8F5E7C58C9} + PadSSSPSX + Win32Proj + + + + DynamicLibrary + MultiByte + true + + + DynamicLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + + + + Disabled + EnableFastChecks + MultiThreadedDebug + + + + + user32.lib;kernel32.lib;dxguid.lib;dinput8.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)-dbg.dll + PadSSSPSX.def + false + MachineX86 + + + + + MaxSpeed + AnySuitable + true + MultiThreaded + + + + + dxguid.lib;dinput8.lib;%(AdditionalDependencies) + PadSSSPSX.def + false + MachineX86 + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/SSSPSXPAD/PadSSSPSX.vcxproj.filters b/plugins/SSSPSXPAD/PadSSSPSX.vcxproj.filters new file mode 100644 index 0000000000..7607ee2540 --- /dev/null +++ b/plugins/SSSPSXPAD/PadSSSPSX.vcxproj.filters @@ -0,0 +1,40 @@ + + + + + {ce637888-9001-4763-a6af-296bbee81a3f} + cpp;c;cxx;def;odl;idl;hpj;bat;asm + + + {72abb2dd-cb01-4a07-88f7-2b9e453ce969} + h;hpp;hxx;hm;inl;inc + + + {47ea9bc9-9ac0-4637-9586-e20852ea0960} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + + + Header Files + + + Header Files + + + + + Resource Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/plugins/USBnull/Windows/USBnull.vcxproj b/plugins/USBnull/Windows/USBnull.vcxproj new file mode 100644 index 0000000000..c059870910 --- /dev/null +++ b/plugins/USBnull/Windows/USBnull.vcxproj @@ -0,0 +1,88 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + USBnull + {BF7B81A5-E348-4F7C-A69F-F74C8EEEAD70} + USBnull + Win32Proj + + + + DynamicLibrary + MultiByte + true + + + DynamicLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + + + + + + + + $(OutDir)$(ProjectName)-dbg.dll + USBnull.def + false + MachineX86 + + + + + + + + + USBnull.def + false + MachineX86 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/USBnull/Windows/USBnull.vcxproj.filters b/plugins/USBnull/Windows/USBnull.vcxproj.filters new file mode 100644 index 0000000000..21a1f816fe --- /dev/null +++ b/plugins/USBnull/Windows/USBnull.vcxproj.filters @@ -0,0 +1,38 @@ + + + + + {94a66e11-75eb-4a79-a044-b78e97a6ccc3} + cpp;c;cxx;def;odl;idl;hpj;bat;asm + + + {2790b344-7a1a-45ef-9a16-0dd847d6de56} + h;hpp;hxx;hm;inl;inc + + + {bf432076-1764-488d-84b7-82e00f408011} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/plugins/cdvdGigaherz/src/CDVD.h b/plugins/cdvdGigaherz/src/CDVD.h index 748d5a9c7d..b39eb8c82c 100644 --- a/plugins/cdvdGigaherz/src/CDVD.h +++ b/plugins/cdvdGigaherz/src/CDVD.h @@ -45,7 +45,10 @@ extern toc_data cdtoc; class Source //abstract class as base for source modules { + Source(Source&); public: + Source(){}; + //virtual destructor virtual ~Source() { @@ -68,7 +71,8 @@ public: class IOCtlSrc: public Source { -private: + IOCtlSrc(IOCtlSrc&); + HANDLE device; bool OpenOK; diff --git a/plugins/cdvdGigaherz/src/FileStream.cpp b/plugins/cdvdGigaherz/src/FileStream.cpp new file mode 100644 index 0000000000..c8e12455b6 --- /dev/null +++ b/plugins/cdvdGigaherz/src/FileStream.cpp @@ -0,0 +1,133 @@ +#include +#include "CDVD.h" +#include "FileStream.h" + +using namespace std; + +FileStream::FileStream(const char* fileName) +{ + struct __stat64 stat_info; + _stat64(fileName, &stat_info); + fileSize = stat_info.st_size; + + handle = fopen(fileName, "rb"); +} + +void FileStream::seek(s64 offset) +{ + seek(offset,SEEK_SET); +} + +void FileStream::seek(s64 offset, int ref_position) +{ + int ret = _fseeki64(handle, offset, SEEK_SET); +#ifdef __LINUX__ + if (ret) throw "Seek offset out of bounds."; +#else + if (ret) + throw new exception("Seek offset out of bounds."); +#endif +} + +void FileStream::reset() +{ + seek(0); +} + +s64 FileStream::skip(s64 n) +{ + s64 before = getFilePointer(); + seek(n,SEEK_CUR); + + return getFilePointer() - before; +} + +s64 FileStream::getFilePointer() +{ + return _ftelli64(handle); +} + +bool FileStream::eof() +{ + return feof(handle)!=0; +} + +int FileStream::read() +{ + return fgetc(handle); +} + +int FileStream::read(byte* b, int len) +{ + if (b == NULL) + { +#ifdef __LINUX__ + throw "NULL buffer passed."; +#else + throw new exception("NULL buffer passed."); +#endif + } + + if (len < 0) + { +#ifdef __LINUX__ + throw "off<0 or len<0."; +#else + throw new exception("off<0 or len<0."); +#endif + } + + return fread(b,1,len,handle); +} + +string FileStream::readLine() +{ + string s; + char c; + + s.clear(); + do { + if(eof()) + break; + + c = read(); + + if((c=='\n')||(c=='\r')||(c==0)) + break; + + s.append(1,c); + } while(true); + + return s; +} + +wstring FileStream::readLineW() +{ + wstring s; + wchar_t c; + + s.clear(); + do { + if(eof()) + break; + + c = read(); + + if((c==L'\n')||(c==L'\r')||(c==0)) + break; + + s.append(1,c); + } while(true); + + return s; +} + +s64 FileStream::getLength() +{ + return fileSize; +} + +FileStream::~FileStream(void) +{ + fclose(handle); +} diff --git a/plugins/cdvdGigaherz/src/FileStream.h b/plugins/cdvdGigaherz/src/FileStream.h new file mode 100644 index 0000000000..f9dcfa3c15 --- /dev/null +++ b/plugins/cdvdGigaherz/src/FileStream.h @@ -0,0 +1,51 @@ +#pragma once + +#include +#include + +typedef unsigned char byte; + +class FileStream +{ + int internalRead(byte* b, int off, int len); + + FILE* handle; + s64 fileSize; + + FileStream(FileStream&); +public: + + FileStream(const char* fileName); + + virtual void seek(s64 offset); + virtual void seek(s64 offset, int ref_position); + virtual void reset(); + + virtual s64 skip(s64 n); + virtual s64 getFilePointer(); + + virtual bool eof(); + virtual int read(); + virtual int read(byte* b, int len); + + // Tool to read a specific value type, including structs. + template + T read() + { + if(sizeof(T)==1) + return (T)read(); + else + { + T t; + read((byte*)&t,sizeof(t)); + return t; + } + } + + virtual std::string readLine(); // Assume null-termination + virtual std::wstring readLineW(); // (this one too) + + virtual s64 getLength(); + + virtual ~FileStream(void); +}; diff --git a/plugins/cdvdGigaherz/src/ReaderModules.h b/plugins/cdvdGigaherz/src/ReaderModules.h index bc12500ef9..40529e246a 100644 --- a/plugins/cdvdGigaherz/src/ReaderModules.h +++ b/plugins/cdvdGigaherz/src/ReaderModules.h @@ -1,8 +1,13 @@ #pragma once +#include "FileStream.h" + class Reader: public Source //abstract class as base for Reader modules { + Reader(Reader&); public: + Reader(){}; + //virtual destructor virtual ~Reader() {} @@ -26,7 +31,7 @@ public: class PlainIso: public Reader { - HANDLE fileSource; + FileStream* fileSource; bool OpenOK; @@ -50,6 +55,7 @@ class PlainIso: public Reader bool layerBreakCached; s32 layerBreak; + PlainIso(PlainIso&); public: PlainIso(const char* fileName); diff --git a/plugins/cdvdGigaherz/src/Windows/cdvdGigaherz.vcxproj b/plugins/cdvdGigaherz/src/Windows/cdvdGigaherz.vcxproj new file mode 100644 index 0000000000..17974560f4 --- /dev/null +++ b/plugins/cdvdGigaherz/src/Windows/cdvdGigaherz.vcxproj @@ -0,0 +1,132 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + cdvdGigaherz + {5CF88D5F-64DD-4EDC-9F1A-436BD502940A} + cdvdGigaherz + + + + DynamicLibrary + false + MultiByte + + + DynamicLibrary + false + MultiByte + true + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/cdvdGigaherz.tlb + + + + + %(AdditionalIncludeDirectories) + + + + + NDEBUG;%(PreprocessorDefinitions) + + + %(AdditionalDependencies) + .\plugin.def + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/cdvdGigaherz.tlb + + + + + %(AdditionalIncludeDirectories) + + + _DEBUG;%(PreprocessorDefinitions) + + + $(OutDir)$(ProjectName)-dbg.dll + RequireAdministrator + .\plugin.def + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/cdvdGigaherz/src/Windows/cdvdGigaherz.vcxproj.filters b/plugins/cdvdGigaherz/src/Windows/cdvdGigaherz.vcxproj.filters new file mode 100644 index 0000000000..b2fdd98bd9 --- /dev/null +++ b/plugins/cdvdGigaherz/src/Windows/cdvdGigaherz.vcxproj.filters @@ -0,0 +1,88 @@ + + + + + {c03fe088-95f7-4235-a796-5fe044914fb5} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {1dc55077-7d7a-4951-8841-26d21ff1513b} + + + {6c12b075-7b05-42ce-8628-c668f325f4ce} + h;hpp;hxx;hm;inl + + + {48ccf9e7-ebd6-41ff-bf33-0e964046bb00} + + + {a80698fd-3734-41c4-b7e8-6b96b34633e0} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files\Reader Modules + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files\rosddk + + + Header Files\rosddk + + + Header Files\rosddk + + + Header Files\rosddk + + + + + Resource Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/plugins/cdvdGigaherz/src/Windows/cdvdGigaherz2008.vcproj b/plugins/cdvdGigaherz/src/Windows/cdvdGigaherz2008.vcproj index 5f4e182c65..5d64643484 100644 --- a/plugins/cdvdGigaherz/src/Windows/cdvdGigaherz2008.vcproj +++ b/plugins/cdvdGigaherz/src/Windows/cdvdGigaherz2008.vcproj @@ -174,6 +174,10 @@ RelativePath=".\config.cpp" > + + @@ -194,7 +198,7 @@ Name="Reader Modules" > @@ -207,6 +211,10 @@ RelativePath="..\CDVD.h" > + + diff --git a/plugins/dev9null/Windows/DEV9null.vcxproj b/plugins/dev9null/Windows/DEV9null.vcxproj new file mode 100644 index 0000000000..fe42a780a1 --- /dev/null +++ b/plugins/dev9null/Windows/DEV9null.vcxproj @@ -0,0 +1,100 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + DEV9null + {04439C5F-05FB-4A9C-AAD1-5388C25377DB} + DEV9null + Win32Proj + + + + DynamicLibrary + MultiByte + true + + + DynamicLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + AllRules.ruleset + + + AllRules.ruleset + + + + + + Disabled + EnableFastChecks + MultiThreadedDebug + + + + + $(OutDir)$(ProjectName)-dbg.dll + DEV9null.def + false + + + MachineX86 + + + + + + + + + DEV9null.def + false + + + MachineX86 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/dev9null/Windows/DEV9null.vcxproj.filters b/plugins/dev9null/Windows/DEV9null.vcxproj.filters new file mode 100644 index 0000000000..9e0f8168e6 --- /dev/null +++ b/plugins/dev9null/Windows/DEV9null.vcxproj.filters @@ -0,0 +1,26 @@ + + + + + {60e3858c-96ba-48fb-9518-894ac152b563} + cpp;c;cxx;def;odl;idl;hpj;bat;asm + + + + + Source Files + + + Source Files + + + + + Source Files + + + + + + + \ No newline at end of file diff --git a/plugins/spu2-x/src/Windows/Spu2-X.vcxproj b/plugins/spu2-x/src/Windows/Spu2-X.vcxproj new file mode 100644 index 0000000000..bf8a8d4508 --- /dev/null +++ b/plugins/spu2-x/src/Windows/Spu2-X.vcxproj @@ -0,0 +1,571 @@ + + + + + DebugStrict + Win32 + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + SPU2-X + {5307BBB7-EBB9-4AA4-8CB6-A94EC473C8C4} + spu2x + + + + DynamicLibrary + false + Static + Unicode + + + DynamicLibrary + false + Static + Unicode + true + + + DynamicLibrary + false + Static + Unicode + + + DynamicLibrary + false + Static + Unicode + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + false + true + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/spu2-x.tlb + + + + + $(SolutionDir)\3rdparty\portaudio\include\portaudio\include\;%(AdditionalIncludeDirectories) + FLOAT_SAMPLES;NDEBUG;_USRDLL;%(PreprocessorDefinitions) + Async + StreamingSIMDExtensions2 + Fast + Use + Global.h + Default + + + NDEBUG;%(PreprocessorDefinitions) + 0x0c0a + + + rpcrt4.lib;winmm.lib;dsound.lib;comctl32.lib;soundtouch.lib;x86emitter.lib;utilities.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)-dev.dll + $(SolutionDir)\3rdparty\portaudio;%(AdditionalLibraryDirectories) + .\Spu2-X.def + false + MachineX86 + + + true + + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/spu2-x.tlb + + + + + $(SolutionDir)\3rdparty\portaudio\include\portaudio\include\;%(AdditionalIncludeDirectories) + FLOAT_SAMPLES;_USRDLL;%(PreprocessorDefinitions) + Async + Use + Global.h + + + _DEBUG;%(PreprocessorDefinitions) + 0x0c0a + + + rpcrt4.lib;winmm.lib;dsound.lib;comctl32.lib;soundtouch.lib;x86emitter.lib;utilities.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)-dbg.dll + $(SolutionDir)\3rdparty\portaudio;%(AdditionalLibraryDirectories) + .\Spu2-X.def + false + false + MachineX86 + + + true + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + + + + + $(SolutionDir)\3rdparty\portaudio\include\portaudio\include\;%(AdditionalIncludeDirectories) + FLOAT_SAMPLES;NDEBUG;_USRDLL;%(PreprocessorDefinitions) + Async + StreamingSIMDExtensions2 + Fast + Use + Global.h + Default + + + NDEBUG;%(PreprocessorDefinitions) + 0x0c0a + + + rpcrt4.lib;winmm.lib;dsound.lib;comctl32.lib;soundtouch.lib;x86emitter.lib;utilities.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName).dll + $(SolutionDir)\3rdparty\portaudio;%(AdditionalLibraryDirectories) + .\Spu2-X.def + $(TargetDir)$(TargetName).pdb + + + false + MachineX86 + + + true + + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/spu2-x.tlb + + + + + $(SolutionDir)\3rdparty\portaudio\include\portaudio\include\;%(AdditionalIncludeDirectories) + wxUSE_GUI=0;FLOAT_SAMPLES;DEBUG_FAST;_USRDLL;%(PreprocessorDefinitions) + Async + Use + Global.h + + + _DEBUG;%(PreprocessorDefinitions) + 0x0c0a + %(AdditionalIncludeDirectories) + + + rpcrt4.lib;winmm.lib;dsound.lib;comctl32.lib;soundtouch.lib;x86emitter.lib;utilities.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)-dbg.dll + %(AdditionalLibraryDirectories) + .\Spu2-X.def + false + false + .\Debug/spu2-x.lib + MachineX86 + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Create + Create + Global.h + Create + Global.h + Create + Global.h + + + + + + + + + Default + + + Default + + + + + true + + + true + + + true + Default + + + true + Default + + + + Default + Default + + + Default + Default + + + + + + + + + + + + + + + true + + + true + + + true + Default + + + true + Default + + + + + + + true + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + true + + + AssemblyAndSourceCode + true + Default + + + true + Default + + + + + + + + + AssemblyAndSourceCode + true + + + true + + + true + Default + + + true + Default + + + + + + true + true + true + true + + + true + true + true + true + + + true + true + true + true + + + + + Default + Default + + + + + + + + + + + + + + + + + + + + + + + + + + + + %(AdditionalIncludeDirectories) + + + + + {0a18a071-125e-442f-aff7-a3f68abecf99} + false + + + {e9b51944-7e6d-4bcd-83f2-7bbd5a46182d} + false + + + {26511268-2902-4997-8421-ecd7055f9e28} + false + + + {7e9b2be7-cec3-4f14-847b-0ab8d562fb86} + false + + + {0e231fb1-f3c9-4724-accb-de8bcb3c089e} + false + + + {48ad7e0a-25b1-4974-a1e3-03f8c438d34f} + false + + + {c34487af-228a-4d11-8e50-27803df76873} + false + + + {0318ba30-ef48-441a-9e10-dc85efae39f0} + false + + + {2f6c0388-20cb-4242-9f6c-a6ebb6a83f47} + false + + + {4639972e-424e-4e13-8b07-ca403c481346} + false + + + {a51123f5-9505-4eae-85e7-d320290a272c} + false + + + + + + \ No newline at end of file diff --git a/plugins/spu2-x/src/Windows/Spu2-X.vcxproj.filters b/plugins/spu2-x/src/Windows/Spu2-X.vcxproj.filters new file mode 100644 index 0000000000..eac048c7c4 --- /dev/null +++ b/plugins/spu2-x/src/Windows/Spu2-X.vcxproj.filters @@ -0,0 +1,302 @@ + + + + + {21596259-72f4-41c0-b499-40839e39f043} + h;hpp;cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {30e5b8dd-2015-4c3d-a663-992fb42627b5} + + + {ed4df93e-4e4b-4675-a181-c5084146df7c} + + + {1cb77247-dec9-4a0a-867f-7353b14decac} + + + {f87cf8e1-d654-4214-b7f4-6fb697f3941a} + + + {10ccccc1-642a-42ec-900c-801f707bd776} + + + {03be4765-f627-4c0a-9d40-f3c0f86f1e57} + + + {ea7e8889-2015-40b9-ac77-b4a3a58c41af} + + + {63ac2d88-b5c3-41a3-bd2c-a04c80acd35f} + + + {825046cd-874f-45f4-8622-14c146a97b46} + + + {3924e038-9ec9-4f1c-89b9-6d03c46566ac} + + + {efaf786c-f09d-49f7-b5f3-8bb7078e9c44} + + + {00c53f28-fde8-4f60-88d2-d223584f1db5} + + + {95111121-7e1f-4624-8765-a17e8f13827f} + + + {70e9653e-fba5-4c6e-ad9b-185006096d49} + + + {6fcf6c91-7afe-4ade-bb30-79d63901d590} + + + {381a6e5e-bdd5-48b0-81f8-e2775eff9585} + + + {d26e57df-a97e-4ba5-801a-c0c52b5d061f} + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files\debug + + + Source Files\Sound Output + + + Source Files\Sound Output + + + Source Files\Sound Output\Linux + + + Source Files\decoder + + + Source Files\decoder\ac3%28a/52%29 + + + Source Files\decoder\ac3%28a/52%29 + + + Source Files\decoder\ac3%28a/52%29 + + + Source Files\decoder\ac3%28a/52%29 + + + Source Files\decoder\ac3%28a/52%29 + + + Source Files\decoder\ac3%28a/52%29 + + + Source Files\decoder\ac3%28a/52%29 + + + Source Files\SPU2 + + + Source Files\SPU2 + + + Source Files\SPU2 + + + Source Files\SPU2\Mixer + + + Source Files\Winamp DSP + + + Source Files\GUI\Linux\Include + + + Source Files\GUI\Linux\Include + + + Source Files\GUI\Linux\Include + + + Source Files\GUI\Windows + + + Source Files\GUI\Windows + + + Source Files\GUI\Windows + + + Source Files\PluginInterface + + + Resources + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files\debug + + + Source Files\debug + + + Source Files\debug + + + Source Files\debug + + + Source Files\Sound Output + + + Source Files\Sound Output + + + Source Files\Sound Output + + + Source Files\Sound Output\Windows + + + Source Files\Sound Output\Windows + + + Source Files\Sound Output\Windows + + + Source Files\Sound Output\Linux + + + Source Files\Sound Output\Crossplatform + + + Source Files\decoder + + + Source Files\decoder\ac3%28a/52%29 + + + Source Files\decoder\ac3%28a/52%29 + + + Source Files\decoder\ac3%28a/52%29 + + + Source Files\decoder\ac3%28a/52%29 + + + Source Files\decoder\ac3%28a/52%29 + + + Source Files\SPU2 + + + Source Files\SPU2 + + + Source Files\SPU2 + + + Source Files\SPU2 + + + Source Files\SPU2\Mixer + + + Source Files\SPU2\Mixer + + + Source Files\SPU2\Mixer + + + Source Files\SPU2\Mixer + + + Source Files\Winamp DSP + + + Source Files\GUI\Linux + + + Source Files\GUI\Linux + + + Source Files\GUI\Linux + + + Source Files\GUI\Windows + + + Source Files\GUI\Windows + + + Source Files\GUI\Windows + + + Source Files\GUI\Windows + + + Source Files\GUI\Windows + + + Source Files\GUI\Windows + + + Source Files\GUI\Windows + + + Source Files\GUI\Windows + + + Source Files\PluginInterface + + + + + Documents + + + Documents + + + Documents + + + Resources + + + Resources + + + Resources + + + + + Resources + + + \ No newline at end of file diff --git a/plugins/xpad/xpad.vcxproj b/plugins/xpad/xpad.vcxproj index 906ee85abd..c03d09d77c 100644 --- a/plugins/xpad/xpad.vcxproj +++ b/plugins/xpad/xpad.vcxproj @@ -1,22 +1,115 @@ - + + + + Debug SSE2 + Win32 + + + Debug SSE2 + x64 + + + Debug SSE4 + Win32 + + + Debug SSE4 + x64 + + + Debug SSSE3 + Win32 + + + Debug SSSE3 + x64 + Debug Win32 + + Debug + x64 + + + Release SSE2 + Win32 + + + Release SSE2 + x64 + + + Release SSE4 + Win32 + + + Release SSE4 + x64 + + + Release SSSE3 + Win32 + + + Release SSSE3 + x64 + Release Win32 + + Release + x64 + + + Template + Win32 + + + Template + x64 + xpad - {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A} + {6F3C4136-5801-4EBC-AC6E-37DF6FAB150A} xpad Win32Proj - + + DynamicLibrary + false + MultiByte + true + + + DynamicLibrary + false + MultiByte + + + DynamicLibrary + false + MultiByte + + + DynamicLibrary + false + MultiByte + true + + + DynamicLibrary + false + MultiByte + true + + DynamicLibrary false MultiByte @@ -27,27 +120,194 @@ MultiByte true + + DynamicLibrary + false + MultiByte + + + Application + + + DynamicLibrary + Static + MultiByte + true + + + DynamicLibrary + Static + MultiByte + + + DynamicLibrary + Static + MultiByte + + + DynamicLibrary + Static + MultiByte + true + + + DynamicLibrary + Static + MultiByte + true + + + DynamicLibrary + Static + MultiByte + false + + + DynamicLibrary + Static + MultiByte + true + + + DynamicLibrary + Static + MultiByte + - - + + + + + + + + - - - - - + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - <_ProjectFileVersion>10.0.20506.1 + <_ProjectFileVersion>10.0.30319.1 @@ -61,6 +321,21 @@ MachineX86 + + + X64 + + + Use + + + + + + + MachineX64 + + Use @@ -72,32 +347,200 @@ MachineX86 - - - - + + + + X64 + + + Use + + + + + + + MachineX64 + + + + + Use + + + .\xpad.def + %(DelayLoadDLLs) + + + MachineX86 + + + + + Use + + + + + MachineX64 + + + + + Use + + + .\xpad.def + %(DelayLoadDLLs) + + + MachineX86 + + + + + Use + + + + + MachineX64 + + + + + Use + + + .\xpad.def + %(DelayLoadDLLs) + + + MachineX86 + + + + + Use + + + + + MachineX64 + + + + + Use + + + .\xpad.def + %(DelayLoadDLLs) + + + MachineX86 + + + + + Use + + + + + MachineX64 + + + + + Use + + + .\xpad.def + %(DelayLoadDLLs) + + + MachineX86 + + + + + X64 + + + Use + + + + + MachineX64 + + + + + Use + + + .\xpad.def + %(DelayLoadDLLs) + + + MachineX86 + + + + + X64 + + + Use + + + + + MachineX64 + + Create + Create + Create + Create + Create + Create Create + Create + Create + Create + Create + Create + Create + Create Create + Create - + + + + + - - - - + + + + + \ No newline at end of file diff --git a/plugins/xpad/xpad.vcxproj.filters b/plugins/xpad/xpad.vcxproj.filters index 57613c73b4..afd67733b7 100644 --- a/plugins/xpad/xpad.vcxproj.filters +++ b/plugins/xpad/xpad.vcxproj.filters @@ -1,6 +1,10 @@  + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + {93995380-89BD-4b04-88EB-625FBE52EBFB} h;hpp;hxx;hm;inl;inc;xsd @@ -9,10 +13,6 @@ {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - @@ -23,9 +23,14 @@ - + + Source Files + + Resource Files - + + + Header Files @@ -35,18 +40,13 @@ Header Files + + Resource Files + Resource Files - - - Resource Files - - - Source Files - - \ No newline at end of file diff --git a/plugins/zerogs/dx/Windows/zerogs.vcxproj b/plugins/zerogs/dx/Windows/zerogs.vcxproj new file mode 100644 index 0000000000..80d3f44021 --- /dev/null +++ b/plugins/zerogs/dx/Windows/zerogs.vcxproj @@ -0,0 +1,194 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + ZeroGS + {5C6B7D28-E73D-4F71-8FC0-17ADA640EBD8} + ZeroGS + + + + DynamicLibrary + false + MultiByte + true + + + DynamicLibrary + MultiByte + + + DynamicLibrary + false + MultiByte + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + false + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/GSsoftdx.tlb + + + + + ..\x86\;..\..\ZeroGSShaders\;%(AdditionalIncludeDirectories) + NDEBUG;_USRDLL;__i386__;ZEROGS_DEVBUILD;ZEROGS_SSE2;%(PreprocessorDefinitions) + .\Release/GSsoftdx.pch + Default + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + zlib.lib;ddraw.lib;dxerr.lib;dxguid.lib;d3dx9.lib;d3d9.lib;odbc32.lib;odbccp32.lib;winmm.lib;Vfw32.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)-dev.dll + true + ..\;%(AdditionalLibraryDirectories) + .\GSsoftdx.def + false + MachineX86 + + + + + ..\x86\;..\..\ZeroGSShaders\;%(AdditionalIncludeDirectories) + D3D_DEBUG_INFO;_USRDLL;__i386__;ZEROGS_DEVBUILD;ZEROGS_SSE2;%(PreprocessorDefinitions) + EditAndContinue + + + zlib.lib;ddraw.lib;dxerr.lib;dxguid.lib;d3dx9.lib;d3d9.lib;odbc32.lib;odbccp32.lib;winmm.lib;Vfw32.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)-dbg.dll + ..\;%(AdditionalLibraryDirectories) + %(IgnoreSpecificDefaultLibraries) + .\GSsoftdx.def + false + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/GSsoftdx.tlb + + + + + ..\x86\;..\..\ZeroGSShaders\;%(AdditionalIncludeDirectories) + NDEBUG;_WINDOWS;_USRDLL;__i386__;RELEASE_TO_PUBLIC;ZEROGS_SSE2;%(PreprocessorDefinitions) + + + Default + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + zlib.lib;ddraw.lib;dxerr.lib;dxguid.lib;d3dx9.lib;d3d9.lib;odbc32.lib;odbccp32.lib;winmm.lib;Vfw32.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName).dll + true + ..\;%(AdditionalLibraryDirectories) + .\GSsoftdx.def + false + MachineX86 + + + + + + + + + + + + + + + + + ml /nologo /c /Zi /Fo"$(IntDir)%(Filename).obj" "%(FullPath)" + + $(IntDir)%(Filename).obj;%(Outputs) + ml /nologo /c /Zi /Fo"$(IntDir)%(Filename).obj" "%(FullPath)" + + $(IntDir)%(Filename).obj;%(Outputs) + ml /nologo /c /Zi /Fo"$(IntDir)%(Filename).obj" "%(FullPath)" + + $(IntDir)%(Filename).obj;%(Outputs) + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/zerogs/dx/Windows/zerogs.vcxproj.filters b/plugins/zerogs/dx/Windows/zerogs.vcxproj.filters new file mode 100644 index 0000000000..ea5748a661 --- /dev/null +++ b/plugins/zerogs/dx/Windows/zerogs.vcxproj.filters @@ -0,0 +1,106 @@ + + + + + {3d88e262-211f-4c7c-8e48-401a5e7e5693} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {0ec02065-4a77-4d4f-8eda-d1c1842fc718} + h;hpp;hxx;hm;inl + + + {069c51db-9551-438c-b89f-20063b43404f} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Source Files + + + Resource Files + + + Resource 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 + + + + + Source Files + + + \ No newline at end of file diff --git a/plugins/zerospu2/Windows/ZeroSPU2.vcxproj b/plugins/zerospu2/Windows/ZeroSPU2.vcxproj new file mode 100644 index 0000000000..099466ef7c --- /dev/null +++ b/plugins/zerospu2/Windows/ZeroSPU2.vcxproj @@ -0,0 +1,158 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + ZeroSPU2 + {7F059854-568D-4E08-9D00-1E78E203E4DC} + ZeroSPU2 + Win32Proj + + + + DynamicLibrary + MultiByte + false + + + DynamicLibrary + MultiByte + true + + + DynamicLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + true + + + + + + + + _USRDLL;ZEROSPU2_EXPORTS;%(PreprocessorDefinitions) + + + + + dsound.lib;winmm.lib;soundtouch.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)-dbg.dll + %(IgnoreSpecificDefaultLibraries) + ZeroSPU2.def + Windows + false + MachineX86 + + + + + + + + + FLOAT_SAMPLES;NDEBUG;_USRDLL;ZEROSPU2_EXPORTS;%(PreprocessorDefinitions) + + + + + dsound.lib;winmm.lib;soundtouch.lib;%(AdditionalDependencies) + %(IgnoreSpecificDefaultLibraries) + ZeroSPU2.def + Windows + false + MachineX86 + + + + + + + + + FLOAT_SAMPLES;NDEBUG;_USRDLL;ZEROSPU2_EXPORTS;%(PreprocessorDefinitions) + true + false + + + + + dsound.lib;winmm.lib;soundtouch.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)-dev.dll + %(IgnoreSpecificDefaultLibraries) + ZeroSPU2.def + Windows + false + MachineX86 + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/zerospu2/Windows/ZeroSPU2.vcxproj.filters b/plugins/zerospu2/Windows/ZeroSPU2.vcxproj.filters new file mode 100644 index 0000000000..60ceb6dab4 --- /dev/null +++ b/plugins/zerospu2/Windows/ZeroSPU2.vcxproj.filters @@ -0,0 +1,71 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;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;tiff;tif;png;wav + + + + + 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 + + + + + Resource Files + + + \ No newline at end of file diff --git a/plugins/zzogl-pg/opengl/Win32/zerogsogl.vcxproj b/plugins/zzogl-pg/opengl/Win32/zerogsogl.vcxproj new file mode 100644 index 0000000000..94983ab9d3 --- /dev/null +++ b/plugins/zzogl-pg/opengl/Win32/zerogsogl.vcxproj @@ -0,0 +1,205 @@ + + + + + Debug + Win32 + + + Devel + Win32 + + + Release + Win32 + + + + ZZOgl + {2D4E85B2-F47F-4D65-B091-701E5C031DAC} + ZZogl + + + + DynamicLibrary + false + MultiByte + true + + + DynamicLibrary + MultiByte + + + DynamicLibrary + false + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + + + + + $(ProjectRootDir)\;$(ProjectRootDir)\ZeroGSShaders\;$(ProjectRootDir)\Win32;$(SvnRootDir)\3rdparty\libjpeg;%(AdditionalIncludeDirectories) + NDEBUG;_USRDLL;__i386__;ZEROGS_DEVBUILD;%(PreprocessorDefinitions) + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + winmm.lib;Vfw32.lib;cg.lib;cgGL.lib;opengl32.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)-dev.dll + ..\;%(AdditionalLibraryDirectories) + .\zerogs.def + + + + + $(ProjectRootDir)\;$(ProjectRootDir)\ZeroGSShaders\;$(ProjectRootDir)\Win32;$(SvnRootDir)\3rdparty\libjpeg;%(AdditionalIncludeDirectories) + _USRDLL;ZEROGS_DEVBUILD;_DEBUG;__i386__;%(PreprocessorDefinitions) + + + winmm.lib;Vfw32.lib;cg.lib;cgGL.lib;opengl32.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)-dbg.dll + ..\;%(AdditionalLibraryDirectories) + %(IgnoreSpecificDefaultLibraries) + .\zerogs.def + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + + + + + $(ProjectRootDir)\;$(ProjectRootDir)\ZeroGSShaders\;$(ProjectRootDir)\Win32;$(SvnRootDir)\3rdparty\libjpeg;%(AdditionalIncludeDirectories) + NDEBUG;_USRDLL;__i386__;ZEROGS_SSE2;RELEASE_TO_PUBLIC;%(PreprocessorDefinitions) + + + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + winmm.lib;Vfw32.lib;cg.lib;cgGL.lib;opengl32.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName).dll + ..\;%(AdditionalLibraryDirectories) + .\zerogs.def + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + ml /nologo /c /Fo"$(IntDir)%(Filename).obj" "%(FullPath)" + + $(IntDir)%(Filename).obj;%(Outputs) + ml /nologo /c /Fo"$(IntDir)%(Filename).obj" "%(FullPath)" + + $(IntDir)%(Filename).obj;%(Outputs) + ml /nologo /c /Fo"$(IntDir)%(Filename).obj" "%(FullPath)" + + $(IntDir)%(Filename).obj;%(Outputs) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/zzogl-pg/opengl/Win32/zerogsogl.vcxproj.filters b/plugins/zzogl-pg/opengl/Win32/zerogsogl.vcxproj.filters new file mode 100644 index 0000000000..e52f6f2d3a --- /dev/null +++ b/plugins/zzogl-pg/opengl/Win32/zerogsogl.vcxproj.filters @@ -0,0 +1,175 @@ + + + + + {db5b3cda-2af3-451d-95a6-1ecd6410acb3} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {609d2fdc-53bd-42af-90ff-793a1107f003} + h;hpp;hxx;hm;inl + + + {a2158e1c-a894-441e-ab9e-e2361e55f009} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + {4755b02f-755a-491e-b851-acab63a59d75} + + + + + 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 + + + Source Files + + + Source Files + + + + + Source Files + + + Resource Files + + + Resource Files + + + Docs + + + + + + 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 + + + + + Source Files + + + \ No newline at end of file diff --git a/tools/bin2cpp/bin2c.vcxproj b/tools/bin2cpp/bin2c.vcxproj index f99aacd375..2fe7185e4d 100644 --- a/tools/bin2cpp/bin2c.vcxproj +++ b/tools/bin2cpp/bin2c.vcxproj @@ -1,4 +1,5 @@ - + + Debug @@ -11,33 +12,36 @@ bin2cpp - {677B7D11-D5E1-40B3-88B1-9A4DF83D2213} + {677B7D11-D5E1-40B3-88B1-9A4DF83D2213} bin2c Win32Proj - - Application - MultiByte - Application MultiByte true + + Application + MultiByte + - - + + + + + - <_ProjectFileVersion>10.0.20506.1 - $(SolutionDir)\bin + <_ProjectFileVersion>10.0.30319.1 + $(ProjectDir)\..\bin\ $(Configuration)\ true - $(SolutionDir)\bin + $(ProjectDir)\..\bin\ $(Configuration)\ false AllRules.ruleset @@ -46,7 +50,6 @@ AllRules.ruleset - $(ProjectName)-dbg @@ -61,6 +64,7 @@ EditAndContinue + $(OutDir)$(ProjectName)-dbg.exe true Console MachineX86 diff --git a/tools/bin2cpp/bin2c.vcxproj.filters b/tools/bin2cpp/bin2c.vcxproj.filters new file mode 100644 index 0000000000..7ca06d07b0 --- /dev/null +++ b/tools/bin2cpp/bin2c.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;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;tiff;tif;png;wav + + + + + Source Files + + + \ No newline at end of file