pcsx2/common/vsprops
Miguel A. Colón Vélez 09c8a41294 Update SoundTouch to 1.9.0.
It claimed to be 1.7.1 but it had a mixture from various
versions. It was hard to update as everything in the top directory
so I used upstream's way to organize files. I renamed include to
soundtouch since I did not want to #ifdef that for windows.
.
Wavfile.h is a private header so I used the private path instead of
moving the file over. This changed 3 files in the plugin folder.
2015-08-22 10:16:27 -04:00
..
3rdpartyDeps.props Update SoundTouch to 1.9.0. 2015-08-22 10:16:27 -04:00
BaseProperties.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
CodeGen_Debug.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
CodeGen_Devel.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
CodeGen_Release.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
CommonLibrary.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
IncrementalLinking.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
common.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
debug.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
devel.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
lib.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
plugin.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
plugin_svnroot.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
postBuild.unknown Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
preBuild.cmd Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
pthreads.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
readme.txt Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
release.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
sse2.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
sse4.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
ssse3.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00
wxWidgetsGui.props Introduce end-of-line normalization 2015-08-04 23:52:48 +02:00

readme.txt

Decriptions of Provided .vsprops Sheets
---------------------------------------

 * plugin_svnroot - Provides a set of semi-standard user macros for plugins that
   conform to an expected folder layout.  Each user macro can be optionally overridden
   by the plugin using its own property sheet, if needed.
   
   See the contents of plugin_svnroot for explanations of the User Macros used by all
   other properties sheets lested below.
   

 * 3rdPartyDeps - Adds the /deps folder to the linker search path.  Does not add
   any actual dependencies.  You must add those manually.

 * pthreads - Adds the w32pthreads library to your project, along with the expected
   compiler defines for correctly compiling and linking pthreads.

 * BaseProperties - Sets up standard Output and Intermediate directories, warning levels,
   struct alignment, and other settings required for Pcsx2 and its libs to link in
   a workable fashion.  Adds standard preprocessor defines for:
   __WIN32__;WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE
   
 * IncrementalLinking - Enables incremental linking, for use in devel/debug modes only.
   Incremental linking force-disables Whole Program Optimization, but builds the result
   .exe/.dll much quicker usually.

 * GlobalLinking - Enables full support for Whole Program Optimization, and force-
   disables any conflicting incremental link settings.