pcsx2/common/vsprops
Stenzek ff34150b15 Build: Simplify Git version extraction
Get rid of SysForwardDefs.h
Use last known git tag to determine version info, if it is not a tagged commit.
2024-01-15 15:35:21 +10:00
..
BaseProjectConfig.props MSBuild: Support building with clang-cl 2023-01-03 12:16:50 +00:00
BaseProperties.props MSBuild: Put all objects/libs together in build directory 2023-08-26 17:23:14 +10:00
CodeGen_Debug.props MSBuild: Put all objects/libs together in build directory 2023-08-26 17:23:14 +10:00
CodeGen_Devel.props MSBuild: Put all objects/libs together in build directory 2023-08-26 17:23:14 +10:00
CodeGen_Release.props MSBuild: Put all objects/libs together in build directory 2023-08-26 17:23:14 +10:00
GenerateSCMVersion.props Misc: More build system cleanups 2023-05-16 12:58:19 +01:00
IncrementalLinking.props VSProps: Set MultiProcessorCompilation in CodeGen props 2021-11-16 10:08:20 +00:00
ProjectConfigAVX2.props MSBuild: Support building with clang-cl 2023-01-03 12:16:50 +00:00
QtCompile.props MSBuild: Don't supply PrecompiledHeader.h to moc 2023-12-25 12:39:08 +10:00
QtCompile.targets Qt: Add work in progress interface 2022-01-30 14:29:18 +00:00
QtCompile.xml Qt: Add work in progress interface 2022-01-30 14:29:18 +00:00
SDL2Compile.props CI: Build Windows dependencies as part of workflow 2023-08-26 17:23:14 +10:00
WinSDK.props vs-build: use the win10 sdk (#3560) 2020-08-05 14:12:00 -04:00
common.props Misc: Slim down PCH 2023-12-24 14:03:14 +10:00
preBuild.cmd Build: Simplify Git version extraction 2024-01-15 15:35:21 +10:00
readme.txt formatter: apply editorconig into various files 2022-11-25 22:41:00 +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.