pcsx2/common/vsprops
Avi Halachmi (:avih) 18953e81bc Visual Studio re-Fix: and also build if git is available 2014-04-06 14:38:54 +03:00
..
3rdpartyDeps.props Sorry missing files. 2010-04-14 19:47:29 +00:00
BaseProperties.props Fix PadSSSPSX building, properly fix ZeroSPU2 and the null plugins too. Remove nullplugin_svnroot.props since it's not used anymore (I misunderstood the way props work). 2010-04-15 22:18:32 +00:00
CodeGen_Debug.props Fix PadSSSPSX building, properly fix ZeroSPU2 and the null plugins too. Remove nullplugin_svnroot.props since it's not used anymore (I misunderstood the way props work). 2010-04-15 22:18:32 +00:00
CodeGen_Devel.props Fix PadSSSPSX building, properly fix ZeroSPU2 and the null plugins too. Remove nullplugin_svnroot.props since it's not used anymore (I misunderstood the way props work). 2010-04-15 22:18:32 +00:00
CodeGen_Release.props - fixed VS2010 project files and added configuration for AVX 2011-01-28 08:21:05 +00:00
CommonLibrary.props Okay I just hate windows search a bit for missing these when I searched for "*.props" 2010-04-14 19:48:32 +00:00
IncrementalLinking.props - fixed VS2010 project files and added configuration for AVX 2011-01-28 08:21:05 +00:00
common.props Fix PadSSSPSX building, properly fix ZeroSPU2 and the null plugins too. Remove nullplugin_svnroot.props since it's not used anymore (I misunderstood the way props work). 2010-04-15 22:18:32 +00:00
debug.props vs2010 project files for pcsx2 (plugins later) 2009-08-12 22:11:06 +00:00
devel.props forgot to set function level linking..., that trims more unused code and dlls deps, any good revision number ahead to reach? :D 2009-08-12 23:27:22 +00:00
lib.props vs2010 project files for pcsx2 (plugins later) 2009-08-12 22:11:06 +00:00
plugin.props vs2010 project files for pcsx2 (plugins later) 2009-08-12 22:11:06 +00:00
plugin_svnroot.props Okay I just hate windows search a bit for missing these when I searched for "*.props" 2010-04-14 19:48:32 +00:00
postBuild.unknown Git-based versioning. 2014-03-25 13:31:36 +01:00
preBuild.cmd Visual Studio re-Fix: and also build if git is available 2014-04-06 14:38:54 +03:00
pthreads.props Committing "blood's" work on building PCSX2 and plugins under msvc 2010. 2010-04-30 19:46:43 +00:00
readme.txt Buildsystem improvements - Added two new property sheets for Incremental Linking and Global Linking. Incremental Linking is fast and allows for Edit and Continue debugging (debug/devel builds), Global Linking is for Release builds. 2009-03-21 04:01:44 +00:00
release.props forgot to set function level linking..., that trims more unused code and dlls deps, any good revision number ahead to reach? :D 2009-08-12 23:27:22 +00:00
sse2.props vs2010 project files for pcsx2 (plugins later) 2009-08-12 22:11:06 +00:00
sse4.props vs2010 project files for pcsx2 (plugins later) 2009-08-12 22:11:06 +00:00
ssse3.props vs2010 project files for pcsx2 (plugins later) 2009-08-12 22:11:06 +00:00
wxWidgetsGui.props Committing "blood's" work on building PCSX2 and plugins under msvc 2010. 2010-04-30 19:46:43 +00: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.