From 2e59f9740a29439df7c7a56cf0ae83dec3081d31 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Mon, 11 Aug 2014 13:49:21 -0400 Subject: initial import of debian version from mentors --- builds/msvc/properties/Common.props | 21 ++++++++++++++++ builds/msvc/properties/DLL.props | 16 +++++++++++++ builds/msvc/properties/Debug.props | 29 ++++++++++++++++++++++ builds/msvc/properties/DebugDEXE.props | 21 ++++++++++++++++ builds/msvc/properties/DebugDLL.props | 20 ++++++++++++++++ builds/msvc/properties/DebugLEXE.props | 20 ++++++++++++++++ builds/msvc/properties/DebugLIB.props | 21 ++++++++++++++++ builds/msvc/properties/DebugLTCG.props | 20 ++++++++++++++++ builds/msvc/properties/DebugSEXE.props | 21 ++++++++++++++++ builds/msvc/properties/EXE.props | 17 +++++++++++++ builds/msvc/properties/LIB.props | 16 +++++++++++++ builds/msvc/properties/LTCG.props | 13 ++++++++++ builds/msvc/properties/Link.props | 21 ++++++++++++++++ builds/msvc/properties/Messages.props | 15 ++++++++++++ builds/msvc/properties/Output.props | 30 +++++++++++++++++++++++ builds/msvc/properties/Release.props | 41 ++++++++++++++++++++++++++++++++ builds/msvc/properties/ReleaseDEXE.props | 20 ++++++++++++++++ builds/msvc/properties/ReleaseDLL.props | 19 +++++++++++++++ builds/msvc/properties/ReleaseLEXE.props | 20 ++++++++++++++++ builds/msvc/properties/ReleaseLIB.props | 19 +++++++++++++++ builds/msvc/properties/ReleaseLTCG.props | 19 +++++++++++++++ builds/msvc/properties/ReleaseSEXE.props | 20 ++++++++++++++++ builds/msvc/properties/Win32.props | 20 ++++++++++++++++ builds/msvc/properties/x64.props | 23 ++++++++++++++++++ 24 files changed, 502 insertions(+) create mode 100644 builds/msvc/properties/Common.props create mode 100644 builds/msvc/properties/DLL.props create mode 100644 builds/msvc/properties/Debug.props create mode 100644 builds/msvc/properties/DebugDEXE.props create mode 100644 builds/msvc/properties/DebugDLL.props create mode 100644 builds/msvc/properties/DebugLEXE.props create mode 100644 builds/msvc/properties/DebugLIB.props create mode 100644 builds/msvc/properties/DebugLTCG.props create mode 100644 builds/msvc/properties/DebugSEXE.props create mode 100644 builds/msvc/properties/EXE.props create mode 100644 builds/msvc/properties/LIB.props create mode 100644 builds/msvc/properties/LTCG.props create mode 100644 builds/msvc/properties/Link.props create mode 100644 builds/msvc/properties/Messages.props create mode 100644 builds/msvc/properties/Output.props create mode 100644 builds/msvc/properties/Release.props create mode 100644 builds/msvc/properties/ReleaseDEXE.props create mode 100644 builds/msvc/properties/ReleaseDLL.props create mode 100644 builds/msvc/properties/ReleaseLEXE.props create mode 100644 builds/msvc/properties/ReleaseLIB.props create mode 100644 builds/msvc/properties/ReleaseLTCG.props create mode 100644 builds/msvc/properties/ReleaseSEXE.props create mode 100644 builds/msvc/properties/Win32.props create mode 100644 builds/msvc/properties/x64.props (limited to 'builds/msvc/properties') diff --git a/builds/msvc/properties/Common.props b/builds/msvc/properties/Common.props new file mode 100644 index 0000000..72588d6 --- /dev/null +++ b/builds/msvc/properties/Common.props @@ -0,0 +1,21 @@ + + + + + <_PropertySheetDisplayName>Common Settings + Unicode + + + + + + + + + true + UNICODE;_UNICODE;%(PreprocessorDefinitions) + Level3 + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DLL.props b/builds/msvc/properties/DLL.props new file mode 100644 index 0000000..b5aa1f0 --- /dev/null +++ b/builds/msvc/properties/DLL.props @@ -0,0 +1,16 @@ + + + + + <_PropertySheetDisplayName>Dynamic Library + dynamic + .dll + + + + + _DLL;_WINDLL;%(PreprocessorDefinitions) + + + + \ No newline at end of file diff --git a/builds/msvc/properties/Debug.props b/builds/msvc/properties/Debug.props new file mode 100644 index 0000000..6fa7419 --- /dev/null +++ b/builds/msvc/properties/Debug.props @@ -0,0 +1,29 @@ + + + + + + + + + <_PropertySheetDisplayName>Debug Settings + Debug + + + + + EnableFastChecks + ProgramDatabase + true + Disabled + _DEBUG;%(PreprocessorDefinitions) + + + _DEBUG;%(PreprocessorDefinitions) + + + true + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DebugDEXE.props b/builds/msvc/properties/DebugDEXE.props new file mode 100644 index 0000000..fe8b577 --- /dev/null +++ b/builds/msvc/properties/DebugDEXE.props @@ -0,0 +1,21 @@ + + + + + <_PropertySheetDisplayName>Console Debug Dynamic + dynamic + + + + + + + + + + MultiThreadedDebugDLL + true + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DebugDLL.props b/builds/msvc/properties/DebugDLL.props new file mode 100644 index 0000000..a451d0b --- /dev/null +++ b/builds/msvc/properties/DebugDLL.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>Dynamic Debug Library + + + + + + + + + + MultiThreadedDebugDLL + true + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DebugLEXE.props b/builds/msvc/properties/DebugLEXE.props new file mode 100644 index 0000000..7fa92c0 --- /dev/null +++ b/builds/msvc/properties/DebugLEXE.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>Console Debug Link Time Code Generation + + + + + + + + + + + MultiThreadedDebug + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DebugLIB.props b/builds/msvc/properties/DebugLIB.props new file mode 100644 index 0000000..c5f1012 --- /dev/null +++ b/builds/msvc/properties/DebugLIB.props @@ -0,0 +1,21 @@ + + + + + <_PropertySheetDisplayName>Static Debug Library + + + + + + + + + + OldStyle + MultiThreadedDebug + true + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DebugLTCG.props b/builds/msvc/properties/DebugLTCG.props new file mode 100644 index 0000000..42b22ff --- /dev/null +++ b/builds/msvc/properties/DebugLTCG.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>Static Debug Link Time Code Generation Library + + + + + + + + + + OldStyle + MultiThreadedDebug + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DebugSEXE.props b/builds/msvc/properties/DebugSEXE.props new file mode 100644 index 0000000..2615ffc --- /dev/null +++ b/builds/msvc/properties/DebugSEXE.props @@ -0,0 +1,21 @@ + + + + + <_PropertySheetDisplayName>Console Debug Static + static + + + + + + + + + + MultiThreadedDebug + true + + + + \ No newline at end of file diff --git a/builds/msvc/properties/EXE.props b/builds/msvc/properties/EXE.props new file mode 100644 index 0000000..3549064 --- /dev/null +++ b/builds/msvc/properties/EXE.props @@ -0,0 +1,17 @@ + + + + + <_PropertySheetDisplayName>Console Application + true + + + + + _CONSOLE;%(PreprocessorDefinitions) + + + Console + + + \ No newline at end of file diff --git a/builds/msvc/properties/LIB.props b/builds/msvc/properties/LIB.props new file mode 100644 index 0000000..3835777 --- /dev/null +++ b/builds/msvc/properties/LIB.props @@ -0,0 +1,16 @@ + + + + + <_PropertySheetDisplayName>Static Library + static + .lib + + + + + _LIB;%(PreprocessorDefinitions) + + + + \ No newline at end of file diff --git a/builds/msvc/properties/LTCG.props b/builds/msvc/properties/LTCG.props new file mode 100644 index 0000000..0229293 --- /dev/null +++ b/builds/msvc/properties/LTCG.props @@ -0,0 +1,13 @@ + + + + + <_PropertySheetDisplayName>Link Time Code Generation Library + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/properties/Link.props b/builds/msvc/properties/Link.props new file mode 100644 index 0000000..db15fbb --- /dev/null +++ b/builds/msvc/properties/Link.props @@ -0,0 +1,21 @@ + + + + + <_PropertySheetDisplayName>Link Time Code Generation Settings + ltcg + + + + + true + + + UseLinkTimeCodeGeneration + + + true + + + + \ No newline at end of file diff --git a/builds/msvc/properties/Messages.props b/builds/msvc/properties/Messages.props new file mode 100644 index 0000000..06a1ab0 --- /dev/null +++ b/builds/msvc/properties/Messages.props @@ -0,0 +1,15 @@ + + + + + <_PropertySheetDisplayName>Build Messages + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/properties/Output.props b/builds/msvc/properties/Output.props new file mode 100644 index 0000000..492876c --- /dev/null +++ b/builds/msvc/properties/Output.props @@ -0,0 +1,30 @@ + + + + + <_PropertySheetDisplayName>Output Settings + + $(ProjectDir)..\..\ + $(ProjectDir)..\..\..\..\ + $(ProjectDir)..\..\..\..\..\ + $(ProjectDir)..\..\..\..\bin\$(PlatformName)\$(DebugOrRelease)\$(PlatformToolset)\$(DefaultLinkage)\ + $(ProjectDir)..\..\..\..\obj\$(TargetName)\$(PlatformName)\$(DebugOrRelease)\$(PlatformToolset)\$(DefaultLinkage)\ + $(OutDir) + $(TargetName) + $(TargetDir)$(TargetName)$(TargetExt) + + + + + $(OutDir)$(TargetName).lib + + + $(OutDir)$(TargetName).log + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/properties/Release.props b/builds/msvc/properties/Release.props new file mode 100644 index 0000000..1c5415b --- /dev/null +++ b/builds/msvc/properties/Release.props @@ -0,0 +1,41 @@ + + + + + + + + + <_PropertySheetDisplayName>Release Settings + Release + false + + + + + /Oy- %(AdditionalOptions) + + true + true + OnlyExplicitInline + false + MaxSpeed + NDEBUG;%(PreprocessorDefinitions) + + + NDEBUG;%(PreprocessorDefinitions) + + + true + + true + + + + + + StreamingSIMDExtensions2 + + + + \ No newline at end of file diff --git a/builds/msvc/properties/ReleaseDEXE.props b/builds/msvc/properties/ReleaseDEXE.props new file mode 100644 index 0000000..b89b373 --- /dev/null +++ b/builds/msvc/properties/ReleaseDEXE.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>Console Release Dynamic + dynamic + + + + + + + + + + MultiThreadedDebugDLL + + + + \ No newline at end of file diff --git a/builds/msvc/properties/ReleaseDLL.props b/builds/msvc/properties/ReleaseDLL.props new file mode 100644 index 0000000..2071b33 --- /dev/null +++ b/builds/msvc/properties/ReleaseDLL.props @@ -0,0 +1,19 @@ + + + + + <_PropertySheetDisplayName>Dynamic Release Library + + + + + + + + + + MultiThreadedDLL + + + + \ No newline at end of file diff --git a/builds/msvc/properties/ReleaseLEXE.props b/builds/msvc/properties/ReleaseLEXE.props new file mode 100644 index 0000000..beb73ef --- /dev/null +++ b/builds/msvc/properties/ReleaseLEXE.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>Console Release Link Time Code Generation + + + + + + + + + + + MultiThreaded + + + + \ No newline at end of file diff --git a/builds/msvc/properties/ReleaseLIB.props b/builds/msvc/properties/ReleaseLIB.props new file mode 100644 index 0000000..2b250d5 --- /dev/null +++ b/builds/msvc/properties/ReleaseLIB.props @@ -0,0 +1,19 @@ + + + + + <_PropertySheetDisplayName>Static Release Library + + + + + + + + + + MultiThreaded + + + + \ No newline at end of file diff --git a/builds/msvc/properties/ReleaseLTCG.props b/builds/msvc/properties/ReleaseLTCG.props new file mode 100644 index 0000000..1814c6f --- /dev/null +++ b/builds/msvc/properties/ReleaseLTCG.props @@ -0,0 +1,19 @@ + + + + + <_PropertySheetDisplayName>Static Release Link Time Code Generation Library + + + + + + + + + + MultiThreaded + + + + \ No newline at end of file diff --git a/builds/msvc/properties/ReleaseSEXE.props b/builds/msvc/properties/ReleaseSEXE.props new file mode 100644 index 0000000..2f5600a --- /dev/null +++ b/builds/msvc/properties/ReleaseSEXE.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>Console Release Static + static + + + + + + + + + + MultiThreaded + + + + \ No newline at end of file diff --git a/builds/msvc/properties/Win32.props b/builds/msvc/properties/Win32.props new file mode 100644 index 0000000..f7b1df6 --- /dev/null +++ b/builds/msvc/properties/Win32.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>x86 Settings + + + + + WIN32;_WIN32;%(PreprocessorDefinitions) + + + MachineX86 + + + /MACHINE:X86 %(AdditionalOptions) + + + + \ No newline at end of file diff --git a/builds/msvc/properties/x64.props b/builds/msvc/properties/x64.props new file mode 100644 index 0000000..0831f69 --- /dev/null +++ b/builds/msvc/properties/x64.props @@ -0,0 +1,23 @@ + + + + + <_PropertySheetDisplayName>x64 Settings + + + + + + WIN32;_WIN32;WIN64;_WIN64;%(PreprocessorDefinitions) + + + MachineX64 + + + /MACHINE:X64 %(AdditionalOptions) + + + + \ No newline at end of file -- cgit v1.2.3