mirror of
				https://github.com/pocoproject/poco.git
				synced 2025-10-30 21:50:47 +01:00 
			
		
		
		
	- added POCO_ENABLE_CPP11 config define (default for VS >= 2010)
- added _WIN32_WINNT value detection up to Windows 7 - modified Util::Units to compile with VS 2010 (static_assert is standard in C++11)
This commit is contained in:
		| @@ -43,6 +43,8 @@ | |||||||
| // Define to enable Windows Unicode (UTF-8) support | // Define to enable Windows Unicode (UTF-8) support | ||||||
| #define POCO_WIN32_UTF8 | #define POCO_WIN32_UTF8 | ||||||
|  |  | ||||||
|  | // Define to enable C++11 support | ||||||
|  | //#define POCO_ENABLE_CPP11 | ||||||
|  |  | ||||||
| // Define to disable implicit linking | // Define to disable implicit linking | ||||||
| // #define POCO_NO_AUTOMATIC_LIBS | // #define POCO_NO_AUTOMATIC_LIBS | ||||||
|   | |||||||
| @@ -56,15 +56,44 @@ | |||||||
|  |  | ||||||
| // Reduce bloat imported by "Poco/UnWindows.h" | // Reduce bloat imported by "Poco/UnWindows.h" | ||||||
| #if defined(_WIN32) | #if defined(_WIN32) | ||||||
| 	#if !defined(_WIN32_WINNT) | //	#if !defined(_WIN32_WINNT) | ||||||
| 		#define _WIN32_WINNT 0x0501 | //		#define _WIN32_WINNT 0x0501 | ||||||
| 	#endif | //	#endif | ||||||
| 	#if !defined(WIN32_LEAN_AND_MEAN) && !defined(POCO_BLOATED_WIN32) | 	#if !defined(WIN32_LEAN_AND_MEAN) && !defined(POCO_BLOATED_WIN32) | ||||||
| 		#define WIN32_LEAN_AND_MEAN | 		#define WIN32_LEAN_AND_MEAN | ||||||
| 	#endif | 	#endif | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #include "Poco/UnWindows.h" | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #if !defined(_WIN32_WINNT) | ||||||
|  | 	#if defined(_WIN32_WINNT_WIN7) | ||||||
|  | 		//Windows 7	_WIN32_WINNT_WIN7 (0x0601) | ||||||
|  | 		#define _WIN32_WINNT _WIN32_WINNT_WIN7 | ||||||
|  | 	#elif defined (_WIN32_WINNT_WS08) | ||||||
|  | 		//Windows Server 2008 _WIN32_WINNT_WS08 (0x0600) | ||||||
|  | 		#define _WIN32_WINNT _WIN32_WINNT_WS08 | ||||||
|  | 	#elif defined (_WIN32_WINNT_VISTA) || defined (_WIN32_WINNT_LONGHORN) | ||||||
|  | 		//Windows Vista	_WIN32_WINNT_VISTA (0x0600) | ||||||
|  | 		#define _WIN32_WINNT _WIN32_WINNT_VISTA | ||||||
|  | 	#elif defined (_WIN32_WINNT_WS03) | ||||||
|  | 		//Windows Server 2003 with SP1, | ||||||
|  | 		//Windows XP with SP2 _WIN32_WINNT_WS03 (0x0502) | ||||||
|  | 		#define _WIN32_WINNT _WIN32_WINNT_WS03 | ||||||
|  | 	#elif defined (_WIN32_WINNT_WINXP) | ||||||
|  | 		//Windows Server 2003, Windows XP _WIN32_WINNT_WINXP (0x0501) | ||||||
|  | 		#define _WIN32_WINNT _WIN32_WINNT_WINXP | ||||||
|  | 	#elif defined (_WIN32_WINNT_WIN2K) | ||||||
|  | 		//Windows 2000 _WIN32_WINNT_WIN2K (0x0500) | ||||||
|  | 		#define _WIN32_WINNT _WIN32_WINNT_WIN2K | ||||||
|  | 	#else | ||||||
|  | 		#define _WIN32_WINNT 0x0500 | ||||||
|  | 	#endif | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  |  | ||||||
| // Unicode Support | // Unicode Support | ||||||
| #if defined(UNICODE) && !defined(POCO_WIN32_UTF8) | #if defined(UNICODE) && !defined(POCO_WIN32_UTF8) | ||||||
| 	#define POCO_WIN32_UTF8 | 	#define POCO_WIN32_UTF8 | ||||||
| @@ -83,6 +112,12 @@ | |||||||
| #endif | #endif | ||||||
|  |  | ||||||
|  |  | ||||||
|  | // Enable C++11 support for VS 2010 and newer | ||||||
|  | #if defined(_MSC_VER) && (_MSC_VER >= 1600) && !defined(POCO_ENABLE_CPP11) | ||||||
|  | 	#define POCO_ENABLE_CPP11 | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  |  | ||||||
| #if defined(__INTEL_COMPILER) | #if defined(__INTEL_COMPILER) | ||||||
| 	#pragma warning(disable:1738) // base class dllexport/dllimport specification differs from that of the derived class | 	#pragma warning(disable:1738) // base class dllexport/dllimport specification differs from that of the derived class | ||||||
| 	#pragma warning(disable:1478) // function ... was declared "deprecated" | 	#pragma warning(disable:1478) // function ... was declared "deprecated" | ||||||
|   | |||||||
| @@ -1,4 +1,4 @@ | |||||||
| <?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||||
|   <ItemGroup Label="ProjectConfigurations"> |   <ItemGroup Label="ProjectConfigurations"> | ||||||
|     <ProjectConfiguration Include="debug_shared|Win32"> |     <ProjectConfiguration Include="debug_shared|Win32"> | ||||||
| @@ -32,76 +32,76 @@ | |||||||
|     <RootNamespace>Util</RootNamespace> |     <RootNamespace>Util</RootNamespace> | ||||||
|     <Keyword>Win32Proj</Keyword> |     <Keyword>Win32Proj</Keyword> | ||||||
|   </PropertyGroup> |   </PropertyGroup> | ||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/> |   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'" Label="Configuration"> |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'" Label="Configuration"> | ||||||
|     <ConfigurationType>StaticLibrary</ConfigurationType> |     <ConfigurationType>StaticLibrary</ConfigurationType> | ||||||
|     <CharacterSet>MultiByte</CharacterSet> |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|   </PropertyGroup> |   </PropertyGroup> | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'" Label="Configuration"> |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'" Label="Configuration"> | ||||||
|     <ConfigurationType>StaticLibrary</ConfigurationType> |     <ConfigurationType>StaticLibrary</ConfigurationType> | ||||||
|     <CharacterSet>MultiByte</CharacterSet> |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|   </PropertyGroup> |   </PropertyGroup> | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'" Label="Configuration"> |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'" Label="Configuration"> | ||||||
|     <ConfigurationType>StaticLibrary</ConfigurationType> |     <ConfigurationType>StaticLibrary</ConfigurationType> | ||||||
|     <CharacterSet>MultiByte</CharacterSet> |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|   </PropertyGroup> |   </PropertyGroup> | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'" Label="Configuration"> |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'" Label="Configuration"> | ||||||
|     <ConfigurationType>StaticLibrary</ConfigurationType> |     <ConfigurationType>StaticLibrary</ConfigurationType> | ||||||
|     <CharacterSet>MultiByte</CharacterSet> |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|   </PropertyGroup> |   </PropertyGroup> | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'" Label="Configuration"> |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'" Label="Configuration"> | ||||||
|     <ConfigurationType>DynamicLibrary</ConfigurationType> |     <ConfigurationType>DynamicLibrary</ConfigurationType> | ||||||
|     <CharacterSet>MultiByte</CharacterSet> |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|   </PropertyGroup> |   </PropertyGroup> | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'" Label="Configuration"> |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'" Label="Configuration"> | ||||||
|     <ConfigurationType>DynamicLibrary</ConfigurationType> |     <ConfigurationType>DynamicLibrary</ConfigurationType> | ||||||
|     <CharacterSet>MultiByte</CharacterSet> |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|   </PropertyGroup> |   </PropertyGroup> | ||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/> |   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||||||
|   <ImportGroup Label="ExtensionSettings"/> |   <ImportGroup Label="ExtensionSettings" /> | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'" Label="PropertySheets"> |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'" Label="PropertySheets"> | ||||||
|     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" /> | ||||||
|   </ImportGroup> |   </ImportGroup> | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'" Label="PropertySheets"> |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'" Label="PropertySheets"> | ||||||
|     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" /> | ||||||
|   </ImportGroup> |   </ImportGroup> | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'" Label="PropertySheets"> |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'" Label="PropertySheets"> | ||||||
|     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" /> | ||||||
|   </ImportGroup> |   </ImportGroup> | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'" Label="PropertySheets"> |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'" Label="PropertySheets"> | ||||||
|     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" /> | ||||||
|   </ImportGroup> |   </ImportGroup> | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'" Label="PropertySheets"> |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'" Label="PropertySheets"> | ||||||
|     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" /> | ||||||
|   </ImportGroup> |   </ImportGroup> | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'" Label="PropertySheets"> |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'" Label="PropertySheets"> | ||||||
|     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" /> | ||||||
|   </ImportGroup> |   </ImportGroup> | ||||||
|   <PropertyGroup Label="UserMacros"/> |   <PropertyGroup Label="UserMacros" /> | ||||||
|   <PropertyGroup> |   <PropertyGroup> | ||||||
|     <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion> |     <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion> | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'">..\bin\</OutDir> |     <OutDir Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'">..\bin\</OutDir> | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'">obj\$(Configuration)\</IntDir> |     <IntDir Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'">obj\$(Configuration)\</IntDir> | ||||||
|     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'">true</LinkIncremental> |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'">true</LinkIncremental> | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'">..\bin\</OutDir> |     <OutDir Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'">..\bin\</OutDir> | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'">obj\$(Configuration)\</IntDir> |     <IntDir Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'">obj\$(Configuration)\</IntDir> | ||||||
|     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'">false</LinkIncremental> |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'">false</LinkIncremental> | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'">..\lib\</OutDir> |     <OutDir Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'">..\lib\</OutDir> | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'">obj\$(Configuration)\</IntDir> |     <IntDir Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'">obj\$(Configuration)\</IntDir> | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'">..\lib\</OutDir> |     <OutDir Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'">..\lib\</OutDir> | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'">obj\$(Configuration)\</IntDir> |     <IntDir Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'">obj\$(Configuration)\</IntDir> | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'">..\lib\</OutDir> |     <OutDir Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'">..\lib\</OutDir> | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'">obj\$(Configuration)\</IntDir> |     <IntDir Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'">obj\$(Configuration)\</IntDir> | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'">..\lib\</OutDir> |     <OutDir Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'">..\lib\</OutDir> | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'">obj\$(Configuration)\</IntDir> |     <IntDir Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'">obj\$(Configuration)\</IntDir> | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'">PocoUtild</TargetName> |     <TargetName Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'">PocoUtild</TargetName> | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'">PocoUtilmdd</TargetName> |     <TargetName Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'">PocoUtilmdd</TargetName> | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'">PocoUtilmtd</TargetName> |     <TargetName Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'">PocoUtilmtd</TargetName> | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'">PocoUtil</TargetName> |     <TargetName Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'">PocoUtil</TargetName> | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'">PocoUtilmd</TargetName> |     <TargetName Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'">PocoUtilmd</TargetName> | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'">PocoUtilmt</TargetName> |     <TargetName Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'">PocoUtilmt</TargetName> | ||||||
|   </PropertyGroup> |   </PropertyGroup> | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'"> |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'"> | ||||||
|     <ClCompile> |     <ClCompile> | ||||||
|       <Optimization>Disabled</Optimization> |       <Optimization>Disabled</Optimization> | ||||||
|       <AdditionalIncludeDirectories>.\include;..\Foundation\include;..\XML\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |       <AdditionalIncludeDirectories>.\include;..\Foundation\include;..\XML\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
| @@ -114,7 +114,7 @@ | |||||||
|       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|       <RuntimeTypeInfo>true</RuntimeTypeInfo> |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|       <PrecompiledHeader/> |       <PrecompiledHeader /> | ||||||
|       <WarningLevel>Level3</WarningLevel> |       <WarningLevel>Level3</WarningLevel> | ||||||
|       <DebugInformationFormat>EditAndContinue</DebugInformationFormat> |       <DebugInformationFormat>EditAndContinue</DebugInformationFormat> | ||||||
|       <CompileAs>Default</CompileAs> |       <CompileAs>Default</CompileAs> | ||||||
| @@ -132,7 +132,7 @@ | |||||||
|       <TargetMachine>MachineX86</TargetMachine> |       <TargetMachine>MachineX86</TargetMachine> | ||||||
|     </Link> |     </Link> | ||||||
|   </ItemDefinitionGroup> |   </ItemDefinitionGroup> | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'"> |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'"> | ||||||
|     <ClCompile> |     <ClCompile> | ||||||
|       <Optimization>Disabled</Optimization> |       <Optimization>Disabled</Optimization> | ||||||
|       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
| @@ -147,9 +147,9 @@ | |||||||
|       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|       <RuntimeTypeInfo>true</RuntimeTypeInfo> |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|       <PrecompiledHeader/> |       <PrecompiledHeader /> | ||||||
|       <WarningLevel>Level3</WarningLevel> |       <WarningLevel>Level3</WarningLevel> | ||||||
|       <DebugInformationFormat/> |       <DebugInformationFormat /> | ||||||
|       <CompileAs>Default</CompileAs> |       <CompileAs>Default</CompileAs> | ||||||
|       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|     </ClCompile> |     </ClCompile> | ||||||
| @@ -166,7 +166,7 @@ | |||||||
|       <TargetMachine>MachineX86</TargetMachine> |       <TargetMachine>MachineX86</TargetMachine> | ||||||
|     </Link> |     </Link> | ||||||
|   </ItemDefinitionGroup> |   </ItemDefinitionGroup> | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'"> |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'"> | ||||||
|     <ClCompile> |     <ClCompile> | ||||||
|       <Optimization>Disabled</Optimization> |       <Optimization>Disabled</Optimization> | ||||||
|       <AdditionalIncludeDirectories>.\include;..\Foundation\include;..\XML\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |       <AdditionalIncludeDirectories>.\include;..\Foundation\include;..\XML\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
| @@ -179,7 +179,7 @@ | |||||||
|       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|       <RuntimeTypeInfo>true</RuntimeTypeInfo> |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|       <PrecompiledHeader/> |       <PrecompiledHeader /> | ||||||
|       <ProgramDataBaseFileName>..\lib\PocoUtilmtd.pdb</ProgramDataBaseFileName> |       <ProgramDataBaseFileName>..\lib\PocoUtilmtd.pdb</ProgramDataBaseFileName> | ||||||
|       <WarningLevel>Level3</WarningLevel> |       <WarningLevel>Level3</WarningLevel> | ||||||
|       <DebugInformationFormat>EditAndContinue</DebugInformationFormat> |       <DebugInformationFormat>EditAndContinue</DebugInformationFormat> | ||||||
| @@ -190,7 +190,7 @@ | |||||||
|       <OutputFile>..\lib\PocoUtilmtd.lib</OutputFile> |       <OutputFile>..\lib\PocoUtilmtd.lib</OutputFile> | ||||||
|     </Lib> |     </Lib> | ||||||
|   </ItemDefinitionGroup> |   </ItemDefinitionGroup> | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'"> |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'"> | ||||||
|     <ClCompile> |     <ClCompile> | ||||||
|       <Optimization>Disabled</Optimization> |       <Optimization>Disabled</Optimization> | ||||||
|       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
| @@ -205,9 +205,9 @@ | |||||||
|       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|       <RuntimeTypeInfo>true</RuntimeTypeInfo> |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|       <PrecompiledHeader/> |       <PrecompiledHeader /> | ||||||
|       <WarningLevel>Level3</WarningLevel> |       <WarningLevel>Level3</WarningLevel> | ||||||
|       <DebugInformationFormat/> |       <DebugInformationFormat /> | ||||||
|       <CompileAs>Default</CompileAs> |       <CompileAs>Default</CompileAs> | ||||||
|       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|     </ClCompile> |     </ClCompile> | ||||||
| @@ -215,7 +215,7 @@ | |||||||
|       <OutputFile>..\lib\PocoUtilmt.lib</OutputFile> |       <OutputFile>..\lib\PocoUtilmt.lib</OutputFile> | ||||||
|     </Lib> |     </Lib> | ||||||
|   </ItemDefinitionGroup> |   </ItemDefinitionGroup> | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'"> |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'"> | ||||||
|     <ClCompile> |     <ClCompile> | ||||||
|       <Optimization>Disabled</Optimization> |       <Optimization>Disabled</Optimization> | ||||||
|       <AdditionalIncludeDirectories>.\include;..\Foundation\include;..\XML\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |       <AdditionalIncludeDirectories>.\include;..\Foundation\include;..\XML\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
| @@ -228,7 +228,7 @@ | |||||||
|       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|       <RuntimeTypeInfo>true</RuntimeTypeInfo> |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|       <PrecompiledHeader/> |       <PrecompiledHeader /> | ||||||
|       <ProgramDataBaseFileName>..\lib\PocoUtilmdd.pdb</ProgramDataBaseFileName> |       <ProgramDataBaseFileName>..\lib\PocoUtilmdd.pdb</ProgramDataBaseFileName> | ||||||
|       <WarningLevel>Level3</WarningLevel> |       <WarningLevel>Level3</WarningLevel> | ||||||
|       <DebugInformationFormat>EditAndContinue</DebugInformationFormat> |       <DebugInformationFormat>EditAndContinue</DebugInformationFormat> | ||||||
| @@ -239,7 +239,7 @@ | |||||||
|       <OutputFile>..\lib\PocoUtilmdd.lib</OutputFile> |       <OutputFile>..\lib\PocoUtilmdd.lib</OutputFile> | ||||||
|     </Lib> |     </Lib> | ||||||
|   </ItemDefinitionGroup> |   </ItemDefinitionGroup> | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'"> |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'"> | ||||||
|     <ClCompile> |     <ClCompile> | ||||||
|       <Optimization>Disabled</Optimization> |       <Optimization>Disabled</Optimization> | ||||||
|       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
| @@ -254,10 +254,10 @@ | |||||||
|       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|       <RuntimeTypeInfo>true</RuntimeTypeInfo> |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|       <PrecompiledHeader/> |       <PrecompiledHeader /> | ||||||
|       <ProgramDataBaseFileName>..\lib\PocoUtilmd.pdb</ProgramDataBaseFileName> |       <ProgramDataBaseFileName>..\lib\PocoUtilmd.pdb</ProgramDataBaseFileName> | ||||||
|       <WarningLevel>Level3</WarningLevel> |       <WarningLevel>Level3</WarningLevel> | ||||||
|       <DebugInformationFormat/> |       <DebugInformationFormat /> | ||||||
|       <CompileAs>Default</CompileAs> |       <CompileAs>Default</CompileAs> | ||||||
|       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|     </ClCompile> |     </ClCompile> | ||||||
| @@ -267,77 +267,78 @@ | |||||||
|     </Lib> |     </Lib> | ||||||
|   </ItemDefinitionGroup> |   </ItemDefinitionGroup> | ||||||
|   <ItemGroup> |   <ItemGroup> | ||||||
|     <ClInclude Include="include\Poco\Util\Application.h"/> |     <ClInclude Include="include\Poco\Util\Application.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\LoggingSubsystem.h"/> |     <ClInclude Include="include\Poco\Util\LoggingSubsystem.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\ServerApplication.h"/> |     <ClInclude Include="include\Poco\Util\ServerApplication.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\Subsystem.h"/> |     <ClInclude Include="include\Poco\Util\Subsystem.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\AbstractConfiguration.h"/> |     <ClInclude Include="include\Poco\Util\AbstractConfiguration.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\ConfigurationMapper.h"/> |     <ClInclude Include="include\Poco\Util\ConfigurationMapper.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\ConfigurationView.h"/> |     <ClInclude Include="include\Poco\Util\ConfigurationView.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\FilesystemConfiguration.h"/> |     <ClInclude Include="include\Poco\Util\FilesystemConfiguration.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\IniFileConfiguration.h"/> |     <ClInclude Include="include\Poco\Util\IniFileConfiguration.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\LayeredConfiguration.h"/> |     <ClInclude Include="include\Poco\Util\LayeredConfiguration.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\LoggingConfigurator.h"/> |     <ClInclude Include="include\Poco\Util\LoggingConfigurator.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\MapConfiguration.h"/> |     <ClInclude Include="include\Poco\Util\MapConfiguration.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\PropertyFileConfiguration.h"/> |     <ClInclude Include="include\Poco\Util\PropertyFileConfiguration.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\SystemConfiguration.h"/> |     <ClInclude Include="include\Poco\Util\SystemConfiguration.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\XMLConfiguration.h"/> |     <ClInclude Include="include\Poco\Util\Units.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\HelpFormatter.h"/> |     <ClInclude Include="include\Poco\Util\XMLConfiguration.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\IntValidator.h"/> |     <ClInclude Include="include\Poco\Util\HelpFormatter.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\Option.h"/> |     <ClInclude Include="include\Poco\Util\IntValidator.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\OptionCallback.h"/> |     <ClInclude Include="include\Poco\Util\Option.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\OptionException.h"/> |     <ClInclude Include="include\Poco\Util\OptionCallback.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\OptionProcessor.h"/> |     <ClInclude Include="include\Poco\Util\OptionException.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\OptionSet.h"/> |     <ClInclude Include="include\Poco\Util\OptionProcessor.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\RegExpValidator.h"/> |     <ClInclude Include="include\Poco\Util\OptionSet.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\Validator.h"/> |     <ClInclude Include="include\Poco\Util\RegExpValidator.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\WinRegistryConfiguration.h"/> |     <ClInclude Include="include\Poco\Util\Validator.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\WinRegistryKey.h"/> |     <ClInclude Include="include\Poco\Util\WinRegistryConfiguration.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\WinService.h"/> |     <ClInclude Include="include\Poco\Util\WinRegistryKey.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\Util.h"/> |     <ClInclude Include="include\Poco\Util\WinService.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\Timer.h"/> |     <ClInclude Include="include\Poco\Util\Util.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\TimerTask.h"/> |     <ClInclude Include="include\Poco\Util\Timer.h" /> | ||||||
|     <ClInclude Include="include\Poco\Util\TimerTaskAdapter.h"/> |     <ClInclude Include="include\Poco\Util\TimerTask.h" /> | ||||||
|  |     <ClInclude Include="include\Poco\Util\TimerTaskAdapter.h" /> | ||||||
|   </ItemGroup> |   </ItemGroup> | ||||||
|   <ItemGroup> |   <ItemGroup> | ||||||
|     <ClCompile Include="src\Application.cpp"/> |     <ClCompile Include="src\Application.cpp" /> | ||||||
|     <ClCompile Include="src\LoggingSubsystem.cpp"/> |     <ClCompile Include="src\LoggingSubsystem.cpp" /> | ||||||
|     <ClCompile Include="src\ServerApplication.cpp"/> |     <ClCompile Include="src\ServerApplication.cpp" /> | ||||||
|     <ClCompile Include="src\Subsystem.cpp"/> |     <ClCompile Include="src\Subsystem.cpp" /> | ||||||
|     <ClCompile Include="src\AbstractConfiguration.cpp"/> |     <ClCompile Include="src\AbstractConfiguration.cpp" /> | ||||||
|     <ClCompile Include="src\ConfigurationMapper.cpp"/> |     <ClCompile Include="src\ConfigurationMapper.cpp" /> | ||||||
|     <ClCompile Include="src\ConfigurationView.cpp"/> |     <ClCompile Include="src\ConfigurationView.cpp" /> | ||||||
|     <ClCompile Include="src\FilesystemConfiguration.cpp"/> |     <ClCompile Include="src\FilesystemConfiguration.cpp" /> | ||||||
|     <ClCompile Include="src\IniFileConfiguration.cpp"/> |     <ClCompile Include="src\IniFileConfiguration.cpp" /> | ||||||
|     <ClCompile Include="src\LayeredConfiguration.cpp"/> |     <ClCompile Include="src\LayeredConfiguration.cpp" /> | ||||||
|     <ClCompile Include="src\LoggingConfigurator.cpp"/> |     <ClCompile Include="src\LoggingConfigurator.cpp" /> | ||||||
|     <ClCompile Include="src\MapConfiguration.cpp"/> |     <ClCompile Include="src\MapConfiguration.cpp" /> | ||||||
|     <ClCompile Include="src\PropertyFileConfiguration.cpp"/> |     <ClCompile Include="src\PropertyFileConfiguration.cpp" /> | ||||||
|     <ClCompile Include="src\SystemConfiguration.cpp"/> |     <ClCompile Include="src\SystemConfiguration.cpp" /> | ||||||
|     <ClCompile Include="src\XMLConfiguration.cpp"/> |     <ClCompile Include="src\XMLConfiguration.cpp" /> | ||||||
|     <ClCompile Include="src\HelpFormatter.cpp"/> |     <ClCompile Include="src\HelpFormatter.cpp" /> | ||||||
|     <ClCompile Include="src\IntValidator.cpp"/> |     <ClCompile Include="src\IntValidator.cpp" /> | ||||||
|     <ClCompile Include="src\Option.cpp"/> |     <ClCompile Include="src\Option.cpp" /> | ||||||
|     <ClCompile Include="src\OptionCallback.cpp"/> |     <ClCompile Include="src\OptionCallback.cpp" /> | ||||||
|     <ClCompile Include="src\OptionException.cpp"/> |     <ClCompile Include="src\OptionException.cpp" /> | ||||||
|     <ClCompile Include="src\OptionProcessor.cpp"/> |     <ClCompile Include="src\OptionProcessor.cpp" /> | ||||||
|     <ClCompile Include="src\OptionSet.cpp"/> |     <ClCompile Include="src\OptionSet.cpp" /> | ||||||
|     <ClCompile Include="src\RegExpValidator.cpp"/> |     <ClCompile Include="src\RegExpValidator.cpp" /> | ||||||
|     <ClCompile Include="src\Validator.cpp"/> |     <ClCompile Include="src\Validator.cpp" /> | ||||||
|     <ClCompile Include="src\WinRegistryConfiguration.cpp"/> |     <ClCompile Include="src\WinRegistryConfiguration.cpp" /> | ||||||
|     <ClCompile Include="src\WinRegistryKey.cpp"/> |     <ClCompile Include="src\WinRegistryKey.cpp" /> | ||||||
|     <ClCompile Include="src\WinService.cpp"/> |     <ClCompile Include="src\WinService.cpp" /> | ||||||
|     <ClCompile Include="src\Timer.cpp"/> |     <ClCompile Include="src\Timer.cpp" /> | ||||||
|     <ClCompile Include="src\TimerTask.cpp"/> |     <ClCompile Include="src\TimerTask.cpp" /> | ||||||
|   </ItemGroup> |   </ItemGroup> | ||||||
|   <ItemGroup> |   <ItemGroup> | ||||||
|     <ResourceCompile Include="..\DLLVersion.rc"> |     <ResourceCompile Include="..\DLLVersion.rc"> | ||||||
|       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'">true</ExcludedFromBuild> |       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'">true</ExcludedFromBuild> | ||||||
|       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'">true</ExcludedFromBuild> |       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'">true</ExcludedFromBuild> | ||||||
|       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'">true</ExcludedFromBuild> |       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'">true</ExcludedFromBuild> | ||||||
|       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'">true</ExcludedFromBuild> |       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'">true</ExcludedFromBuild> | ||||||
|     </ResourceCompile> |     </ResourceCompile> | ||||||
|   </ItemGroup> |   </ItemGroup> | ||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/> |   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||||
|   <ImportGroup Label="ExtensionTargets"/> |   <ImportGroup Label="ExtensionTargets" /> | ||||||
| </Project> | </Project> | ||||||
| @@ -150,6 +150,9 @@ | |||||||
|     <ClInclude Include="include\Poco\Util\TimerTaskAdapter.h"> |     <ClInclude Include="include\Poco\Util\TimerTaskAdapter.h"> | ||||||
|       <Filter>Timer\Header Files</Filter> |       <Filter>Timer\Header Files</Filter> | ||||||
|     </ClInclude> |     </ClInclude> | ||||||
|  |     <ClInclude Include="include\Poco\Util\Units.h"> | ||||||
|  |       <Filter>Util\Header Files</Filter> | ||||||
|  |     </ClInclude> | ||||||
|   </ItemGroup> |   </ItemGroup> | ||||||
|   <ItemGroup> |   <ItemGroup> | ||||||
|     <ClCompile Include="src\Application.cpp"> |     <ClCompile Include="src\Application.cpp"> | ||||||
|   | |||||||
| @@ -328,9 +328,11 @@ Value<V, Power<U, Num, Den> > raise(const Value<V, U>& a) | |||||||
|  |  | ||||||
| namespace Internal | namespace Internal | ||||||
| { | { | ||||||
|  | #ifndef POCO_ENABLE_CPP11 | ||||||
| 	template <bool> struct static_assert; | 	template <bool> struct static_assert; | ||||||
| 	template <> struct static_assert<true> { }; | 	template <> struct static_assert<true> { }; | ||||||
| 		/// Ensures (at compile-time) that the template argument is true. | 		/// Ensures (at compile-time) that the template argument is true. | ||||||
|  | #endif | ||||||
|  |  | ||||||
| 	template <typename T1, typename T2> | 	template <typename T1, typename T2> | ||||||
| 	struct Convertible; | 	struct Convertible; | ||||||
| @@ -374,7 +376,11 @@ namespace Internal | |||||||
| 		/// specialize this template. | 		/// specialize this template. | ||||||
| 		/// The default implementation falls through to Convert2. | 		/// The default implementation falls through to Convert2. | ||||||
| 	{ | 	{ | ||||||
|  | #ifdef POCO_ENABLE_CPP11 | ||||||
|  | 		static_assert(Convertible<T1,T2>::Value, "Error: Value not convertible."); | ||||||
|  | #else | ||||||
| 		static_assert<Convertible<T1,T2>::Value> checkConvertible; | 		static_assert<Convertible<T1,T2>::Value> checkConvertible; | ||||||
|  | #endif | ||||||
| 			/// If this fails, then T1 is not Convertible to T2: | 			/// If this fails, then T1 is not Convertible to T2: | ||||||
|  |  | ||||||
| 		template <typename V> | 		template <typename V> | ||||||
|   | |||||||
							
								
								
									
										9
									
								
								Util/samples/Units/Units.progen
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								Util/samples/Units/Units.progen
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,9 @@ | |||||||
|  | vc.project.guid = ${vc.project.guidFromName} | ||||||
|  | vc.project.name = ${vc.project.baseName} | ||||||
|  | vc.project.target = ${vc.project.name} | ||||||
|  | vc.project.type = executable | ||||||
|  | vc.project.pocobase = ..\\..\\.. | ||||||
|  | vc.project.platforms = Win32, x64, WinCE | ||||||
|  | vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md | ||||||
|  | vc.project.prototype = ${vc.project.name}_vs90.vcproj | ||||||
|  | vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\Util\\include | ||||||
							
								
								
									
										468
									
								
								Util/samples/Units/Units_CE_vs90.vcproj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										468
									
								
								Util/samples/Units/Units_CE_vs90.vcproj
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,468 @@ | |||||||
|  | <?xml version="1.0" encoding="Windows-1252"?> | ||||||
|  | <VisualStudioProject | ||||||
|  | 	Name="Units" | ||||||
|  | 	Version="9.00" | ||||||
|  | 	ProjectType="Visual C++" | ||||||
|  | 	ProjectGUID="{A6800637-61D5-39A3-86AA-E180C73D3120}" | ||||||
|  | 	RootNamespace="Units" | ||||||
|  | 	Keyword="Win32Proj"> | ||||||
|  | 	<Platforms> | ||||||
|  | 		<Platform | ||||||
|  | 			Name="Digi JumpStart (ARMV4I)"/> | ||||||
|  | 	</Platforms> | ||||||
|  | 	<ToolFiles/> | ||||||
|  | 	<Configurations> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="debug_shared|Digi JumpStart (ARMV4I)" | ||||||
|  | 			OutputDirectory="obj\$(PlatformName)\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj\$(PlatformName)\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="1"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool" | ||||||
|  | 				TargetEnvironment="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				ExecutionBucket="7" | ||||||
|  | 				Optimization="0" | ||||||
|  | 				AdditionalIncludeDirectories="..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;$(ARCHFAM);$(_ARCHFAM_);_CONSOLE;_CRT_SECURE_NO_WARNINGS;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				MinimalRebuild="false" | ||||||
|  | 				RuntimeLibrary="3" | ||||||
|  | 				BufferSecurityCheck="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				DebugInformationFormat="3" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings="4800;" | ||||||
|  | 				CompileForArchitecture="2" | ||||||
|  | 				InterworkCalls="false"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalOptions="/FORCE:MULTIPLE" | ||||||
|  | 				AdditionalDependencies="" | ||||||
|  | 				OutputFile="bin\$(PlatformName)\shared\Unitsd.exe" | ||||||
|  | 				LinkIncremental="2" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib\$(PlatformName)" | ||||||
|  | 				GenerateDebugInformation="true" | ||||||
|  | 				ProgramDatabaseFile="bin\$(PlatformName)\shared\Unitsd.pdb" | ||||||
|  | 				SubSystem="0" | ||||||
|  | 				RandomizedBaseAddress="1" | ||||||
|  | 				TargetMachine="0"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCodeSignTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<DeploymentTool | ||||||
|  | 				ForceDirty="-1" | ||||||
|  | 				RemoteDirectory="" | ||||||
|  | 				RegisterOutput="0" | ||||||
|  | 				AdditionalFiles=""/> | ||||||
|  | 			<DebuggerTool/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="release_shared|Digi JumpStart (ARMV4I)" | ||||||
|  | 			OutputDirectory="obj\$(PlatformName)\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj\$(PlatformName)\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="1"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool" | ||||||
|  | 				TargetEnvironment="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				ExecutionBucket="7" | ||||||
|  | 				Optimization="0" | ||||||
|  | 				AdditionalIncludeDirectories="..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;$(ARCHFAM);$(_ARCHFAM_);_CONSOLE;_CRT_SECURE_NO_WARNINGS;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				MinimalRebuild="false" | ||||||
|  | 				RuntimeLibrary="3" | ||||||
|  | 				BufferSecurityCheck="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				DebugInformationFormat="3" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings="4800;" | ||||||
|  | 				CompileForArchitecture="2" | ||||||
|  | 				InterworkCalls="false"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalOptions="/FORCE:MULTIPLE" | ||||||
|  | 				AdditionalDependencies="" | ||||||
|  | 				OutputFile="bin\$(PlatformName)\shared\Units.exe" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib\$(PlatformName)" | ||||||
|  | 				GenerateDebugInformation="false" | ||||||
|  | 				ProgramDatabaseFile="" | ||||||
|  | 				SubSystem="0" | ||||||
|  | 				OptimizeReferences="2" | ||||||
|  | 				EnableCOMDATFolding="2" | ||||||
|  | 				TargetMachine="0"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCodeSignTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<DeploymentTool | ||||||
|  | 				ForceDirty="-1" | ||||||
|  | 				RemoteDirectory="" | ||||||
|  | 				RegisterOutput="0" | ||||||
|  | 				AdditionalFiles=""/> | ||||||
|  | 			<DebuggerTool/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="debug_static_mt|Digi JumpStart (ARMV4I)" | ||||||
|  | 			OutputDirectory="obj\$(PlatformName)\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj\$(PlatformName)\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="1"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool" | ||||||
|  | 				TargetEnvironment="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				ExecutionBucket="7" | ||||||
|  | 				Optimization="0" | ||||||
|  | 				AdditionalIncludeDirectories="..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;$(ARCHFAM);$(_ARCHFAM_);POCO_STATIC;_CONSOLE;_CRT_SECURE_NO_WARNINGS;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				MinimalRebuild="false" | ||||||
|  | 				RuntimeLibrary="1" | ||||||
|  | 				BufferSecurityCheck="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				DebugInformationFormat="3" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings="4800;" | ||||||
|  | 				CompileForArchitecture="2" | ||||||
|  | 				InterworkCalls="false"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalOptions="/FORCE:MULTIPLE" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib " | ||||||
|  | 				OutputFile="bin\$(PlatformName)\static_mt\Unitsd.exe" | ||||||
|  | 				LinkIncremental="2" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib\$(PlatformName)" | ||||||
|  | 				GenerateDebugInformation="true" | ||||||
|  | 				ProgramDatabaseFile="bin\$(PlatformName)\static_mt\Unitsd.pdb" | ||||||
|  | 				SubSystem="0" | ||||||
|  | 				RandomizedBaseAddress="1" | ||||||
|  | 				TargetMachine="0"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCodeSignTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<DeploymentTool | ||||||
|  | 				ForceDirty="-1" | ||||||
|  | 				RemoteDirectory="" | ||||||
|  | 				RegisterOutput="0" | ||||||
|  | 				AdditionalFiles=""/> | ||||||
|  | 			<DebuggerTool/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="release_static_mt|Digi JumpStart (ARMV4I)" | ||||||
|  | 			OutputDirectory="obj\$(PlatformName)\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj\$(PlatformName)\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="1"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool" | ||||||
|  | 				TargetEnvironment="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				ExecutionBucket="7" | ||||||
|  | 				Optimization="4" | ||||||
|  | 				InlineFunctionExpansion="0" | ||||||
|  | 				EnableIntrinsicFunctions="true" | ||||||
|  | 				FavorSizeOrSpeed="1" | ||||||
|  | 				AdditionalIncludeDirectories="..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;$(ARCHFAM);$(_ARCHFAM_);POCO_STATIC;_CONSOLE;_CRT_SECURE_NO_WARNINGS;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				MinimalRebuild="false" | ||||||
|  | 				RuntimeLibrary="0" | ||||||
|  | 				BufferSecurityCheck="false" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				DebugInformationFormat="3" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings="4800" | ||||||
|  | 				CompileForArchitecture="2" | ||||||
|  | 				InterworkCalls="false"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalOptions="/FORCE:MULTIPLE" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib " | ||||||
|  | 				OutputFile="bin\$(PlatformName)\static_mt\Units.exe" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib\$(PlatformName)" | ||||||
|  | 				GenerateDebugInformation="false" | ||||||
|  | 				ProgramDatabaseFile="" | ||||||
|  | 				SubSystem="0" | ||||||
|  | 				OptimizeReferences="2" | ||||||
|  | 				EnableCOMDATFolding="2" | ||||||
|  | 				TargetMachine="0"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCodeSignTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<DeploymentTool | ||||||
|  | 				ForceDirty="-1" | ||||||
|  | 				RemoteDirectory="" | ||||||
|  | 				RegisterOutput="0" | ||||||
|  | 				AdditionalFiles=""/> | ||||||
|  | 			<DebuggerTool/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="debug_static_md|Digi JumpStart (ARMV4I)" | ||||||
|  | 			OutputDirectory="obj\$(PlatformName)\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj\$(PlatformName)\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="1"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool" | ||||||
|  | 				TargetEnvironment="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				ExecutionBucket="7" | ||||||
|  | 				Optimization="0" | ||||||
|  | 				AdditionalIncludeDirectories="..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;$(ARCHFAM);$(_ARCHFAM_);POCO_STATIC;_CONSOLE;_CRT_SECURE_NO_WARNINGS;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				MinimalRebuild="false" | ||||||
|  | 				RuntimeLibrary="3" | ||||||
|  | 				BufferSecurityCheck="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				DebugInformationFormat="3" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings="4800;" | ||||||
|  | 				CompileForArchitecture="2" | ||||||
|  | 				InterworkCalls="false"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalOptions="/FORCE:MULTIPLE" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib " | ||||||
|  | 				OutputFile="bin\$(PlatformName)\static_md\Unitsd.exe" | ||||||
|  | 				LinkIncremental="2" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib\$(PlatformName)" | ||||||
|  | 				GenerateDebugInformation="true" | ||||||
|  | 				ProgramDatabaseFile="bin\$(PlatformName)\static_md\Unitsd.pdb" | ||||||
|  | 				SubSystem="0" | ||||||
|  | 				RandomizedBaseAddress="1" | ||||||
|  | 				TargetMachine="0"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCodeSignTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<DeploymentTool | ||||||
|  | 				ForceDirty="-1" | ||||||
|  | 				RemoteDirectory="" | ||||||
|  | 				RegisterOutput="0" | ||||||
|  | 				AdditionalFiles=""/> | ||||||
|  | 			<DebuggerTool/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="release_static_md|Digi JumpStart (ARMV4I)" | ||||||
|  | 			OutputDirectory="obj\$(PlatformName)\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj\$(PlatformName)\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="1"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool" | ||||||
|  | 				TargetEnvironment="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				ExecutionBucket="7" | ||||||
|  | 				Optimization="4" | ||||||
|  | 				InlineFunctionExpansion="0" | ||||||
|  | 				EnableIntrinsicFunctions="true" | ||||||
|  | 				FavorSizeOrSpeed="1" | ||||||
|  | 				AdditionalIncludeDirectories="..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;$(ARCHFAM);$(_ARCHFAM_);POCO_STATIC;_CONSOLE;_CRT_SECURE_NO_WARNINGS;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				MinimalRebuild="false" | ||||||
|  | 				RuntimeLibrary="2" | ||||||
|  | 				BufferSecurityCheck="false" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				DebugInformationFormat="3" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings="4800" | ||||||
|  | 				CompileForArchitecture="2" | ||||||
|  | 				InterworkCalls="false"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalOptions="/FORCE:MULTIPLE" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib " | ||||||
|  | 				OutputFile="bin\$(PlatformName)\static_md\Units.exe" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib\$(PlatformName)" | ||||||
|  | 				GenerateDebugInformation="false" | ||||||
|  | 				ProgramDatabaseFile="" | ||||||
|  | 				SubSystem="0" | ||||||
|  | 				OptimizeReferences="2" | ||||||
|  | 				EnableCOMDATFolding="2" | ||||||
|  | 				TargetMachine="0"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCodeSignTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<DeploymentTool | ||||||
|  | 				ForceDirty="-1" | ||||||
|  | 				RemoteDirectory="" | ||||||
|  | 				RegisterOutput="0" | ||||||
|  | 				AdditionalFiles=""/> | ||||||
|  | 			<DebuggerTool/> | ||||||
|  | 		</Configuration> | ||||||
|  | 	</Configurations> | ||||||
|  | 	<References/> | ||||||
|  | 	<Files> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Header Files"/> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Source Files"> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\src\Units.cpp"/> | ||||||
|  | 		</Filter> | ||||||
|  | 	</Files> | ||||||
|  | 	<Globals/> | ||||||
|  | </VisualStudioProject> | ||||||
							
								
								
									
										299
									
								
								Util/samples/Units/Units_vs100.vcxproj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										299
									
								
								Util/samples/Units/Units_vs100.vcxproj
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,299 @@ | |||||||
|  | <?xml version="1.0" encoding="UTF-8"?> | ||||||
|  | <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||||
|  |   <ItemGroup Label="ProjectConfigurations"> | ||||||
|  |     <ProjectConfiguration Include="debug_shared|Win32"> | ||||||
|  |       <Configuration>debug_shared</Configuration> | ||||||
|  |       <Platform>Win32</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="debug_static_md|Win32"> | ||||||
|  |       <Configuration>debug_static_md</Configuration> | ||||||
|  |       <Platform>Win32</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="debug_static_mt|Win32"> | ||||||
|  |       <Configuration>debug_static_mt</Configuration> | ||||||
|  |       <Platform>Win32</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="release_shared|Win32"> | ||||||
|  |       <Configuration>release_shared</Configuration> | ||||||
|  |       <Platform>Win32</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="release_static_md|Win32"> | ||||||
|  |       <Configuration>release_static_md</Configuration> | ||||||
|  |       <Platform>Win32</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="release_static_mt|Win32"> | ||||||
|  |       <Configuration>release_static_mt</Configuration> | ||||||
|  |       <Platform>Win32</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |   </ItemGroup> | ||||||
|  |   <PropertyGroup Label="Globals"> | ||||||
|  |     <ProjectName>Units</ProjectName> | ||||||
|  |     <ProjectGuid>{A6800637-61D5-39A3-86AA-E180C73D3120}</ProjectGuid> | ||||||
|  |     <RootNamespace>Units</RootNamespace> | ||||||
|  |     <Keyword>Win32Proj</Keyword> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>Application</ConfigurationType> | ||||||
|  |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>Application</ConfigurationType> | ||||||
|  |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>Application</ConfigurationType> | ||||||
|  |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>Application</ConfigurationType> | ||||||
|  |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>Application</ConfigurationType> | ||||||
|  |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>Application</ConfigurationType> | ||||||
|  |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/> | ||||||
|  |   <ImportGroup Label="ExtensionSettings"/> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'" Label="PropertySheets"> | ||||||
|  |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'" Label="PropertySheets"> | ||||||
|  |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'" Label="PropertySheets"> | ||||||
|  |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'" Label="PropertySheets"> | ||||||
|  |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'" Label="PropertySheets"> | ||||||
|  |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'" Label="PropertySheets"> | ||||||
|  |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <PropertyGroup Label="UserMacros"/> | ||||||
|  |   <PropertyGroup> | ||||||
|  |     <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'">bin\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'">obj\$(Configuration)\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'">true</LinkIncremental> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'">bin\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'">obj\$(Configuration)\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'">false</LinkIncremental> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'">bin\static_mt\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'">obj\$(Configuration)\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'">true</LinkIncremental> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'">bin\static_mt\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'">obj\$(Configuration)\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'">false</LinkIncremental> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'">bin\static_md\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'">obj\$(Configuration)\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'">true</LinkIncremental> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'">bin\static_md\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'">obj\$(Configuration)\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'">false</LinkIncremental> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'">Unitsd</TargetName> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'">Unitsd</TargetName> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'">Unitsd</TargetName> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'">Units</TargetName> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'">Units</TargetName> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'">Units</TargetName> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug_shared|Win32'"> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <AdditionalIncludeDirectories>.\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <MinimalRebuild>true</MinimalRebuild> | ||||||
|  |       <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>true</BufferSecurityCheck> | ||||||
|  |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|  |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|  |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|  |       <PrecompiledHeader/> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <DebugInformationFormat>EditAndContinue</DebugInformationFormat> | ||||||
|  |       <CompileAs>Default</CompileAs> | ||||||
|  |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|  |     </ClCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>bin\Unitsd.exe</OutputFile> | ||||||
|  |       <AdditionalLibraryDirectories>..\..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <GenerateDebugInformation>true</GenerateDebugInformation> | ||||||
|  |       <ProgramDatabaseFile>bin\Unitsd.pdb</ProgramDatabaseFile> | ||||||
|  |       <SubSystem>Console</SubSystem> | ||||||
|  |       <TargetMachine>MachineX86</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'"> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
|  |       <IntrinsicFunctions>true</IntrinsicFunctions> | ||||||
|  |       <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed> | ||||||
|  |       <OmitFramePointers>true</OmitFramePointers> | ||||||
|  |       <AdditionalIncludeDirectories>.\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>false</BufferSecurityCheck> | ||||||
|  |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|  |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|  |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|  |       <PrecompiledHeader/> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <DebugInformationFormat/> | ||||||
|  |       <CompileAs>Default</CompileAs> | ||||||
|  |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|  |     </ClCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>bin\Units.exe</OutputFile> | ||||||
|  |       <AdditionalLibraryDirectories>..\..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||||||
|  |       <GenerateDebugInformation>false</GenerateDebugInformation> | ||||||
|  |       <SubSystem>Console</SubSystem> | ||||||
|  |       <OptimizeReferences>true</OptimizeReferences> | ||||||
|  |       <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||||||
|  |       <TargetMachine>MachineX86</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|Win32'"> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <AdditionalIncludeDirectories>.\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <MinimalRebuild>true</MinimalRebuild> | ||||||
|  |       <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>true</BufferSecurityCheck> | ||||||
|  |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|  |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|  |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|  |       <PrecompiledHeader/> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <DebugInformationFormat>EditAndContinue</DebugInformationFormat> | ||||||
|  |       <CompileAs>Default</CompileAs> | ||||||
|  |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|  |     </ClCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalDependencies>iphlpapi.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>bin\static_mt\Unitsd.exe</OutputFile> | ||||||
|  |       <AdditionalLibraryDirectories>..\..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <GenerateDebugInformation>true</GenerateDebugInformation> | ||||||
|  |       <ProgramDatabaseFile>bin\static_mt\Unitsd.pdb</ProgramDatabaseFile> | ||||||
|  |       <SubSystem>Console</SubSystem> | ||||||
|  |       <TargetMachine>MachineX86</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release_static_mt|Win32'"> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
|  |       <IntrinsicFunctions>true</IntrinsicFunctions> | ||||||
|  |       <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed> | ||||||
|  |       <OmitFramePointers>true</OmitFramePointers> | ||||||
|  |       <AdditionalIncludeDirectories>.\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>false</BufferSecurityCheck> | ||||||
|  |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|  |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|  |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|  |       <PrecompiledHeader/> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <DebugInformationFormat/> | ||||||
|  |       <CompileAs>Default</CompileAs> | ||||||
|  |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|  |     </ClCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalDependencies>iphlpapi.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>bin\static_mt\Units.exe</OutputFile> | ||||||
|  |       <AdditionalLibraryDirectories>..\..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||||||
|  |       <GenerateDebugInformation>false</GenerateDebugInformation> | ||||||
|  |       <SubSystem>Console</SubSystem> | ||||||
|  |       <OptimizeReferences>true</OptimizeReferences> | ||||||
|  |       <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||||||
|  |       <TargetMachine>MachineX86</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_md|Win32'"> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <AdditionalIncludeDirectories>.\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <MinimalRebuild>true</MinimalRebuild> | ||||||
|  |       <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>true</BufferSecurityCheck> | ||||||
|  |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|  |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|  |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|  |       <PrecompiledHeader/> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <DebugInformationFormat>EditAndContinue</DebugInformationFormat> | ||||||
|  |       <CompileAs>Default</CompileAs> | ||||||
|  |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|  |     </ClCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalDependencies>iphlpapi.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>bin\static_md\Unitsd.exe</OutputFile> | ||||||
|  |       <AdditionalLibraryDirectories>..\..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <GenerateDebugInformation>true</GenerateDebugInformation> | ||||||
|  |       <ProgramDatabaseFile>bin\static_md\Unitsd.pdb</ProgramDatabaseFile> | ||||||
|  |       <SubSystem>Console</SubSystem> | ||||||
|  |       <TargetMachine>MachineX86</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release_static_md|Win32'"> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
|  |       <IntrinsicFunctions>true</IntrinsicFunctions> | ||||||
|  |       <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed> | ||||||
|  |       <OmitFramePointers>true</OmitFramePointers> | ||||||
|  |       <AdditionalIncludeDirectories>.\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>false</BufferSecurityCheck> | ||||||
|  |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|  |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|  |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|  |       <PrecompiledHeader/> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <DebugInformationFormat/> | ||||||
|  |       <CompileAs>Default</CompileAs> | ||||||
|  |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|  |     </ClCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalDependencies>iphlpapi.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>bin\static_md\Units.exe</OutputFile> | ||||||
|  |       <AdditionalLibraryDirectories>..\..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||||||
|  |       <GenerateDebugInformation>false</GenerateDebugInformation> | ||||||
|  |       <SubSystem>Console</SubSystem> | ||||||
|  |       <OptimizeReferences>true</OptimizeReferences> | ||||||
|  |       <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||||||
|  |       <TargetMachine>MachineX86</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemGroup> | ||||||
|  |     <ClCompile Include="src\Units.cpp"/> | ||||||
|  |   </ItemGroup> | ||||||
|  |   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/> | ||||||
|  |   <ImportGroup Label="ExtensionTargets"/> | ||||||
|  | </Project> | ||||||
							
								
								
									
										16
									
								
								Util/samples/Units/Units_vs100.vcxproj.filters
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								Util/samples/Units/Units_vs100.vcxproj.filters
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,16 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||||
|  |   <ItemGroup> | ||||||
|  |     <Filter Include="Header Files"> | ||||||
|  |       <UniqueIdentifier>{84fd7f9b-40f2-4e3f-ad6b-069968997168}</UniqueIdentifier> | ||||||
|  |     </Filter> | ||||||
|  |     <Filter Include="Source Files"> | ||||||
|  |       <UniqueIdentifier>{020a442f-c607-43ea-935a-4cba49478ca1}</UniqueIdentifier> | ||||||
|  |     </Filter> | ||||||
|  |   </ItemGroup> | ||||||
|  |   <ItemGroup> | ||||||
|  |     <ClCompile Include="src\Units.cpp"> | ||||||
|  |       <Filter>Source Files</Filter> | ||||||
|  |     </ClCompile> | ||||||
|  |   </ItemGroup> | ||||||
|  | </Project> | ||||||
| @@ -1,9 +1,10 @@ | |||||||
| <?xml version="1.0" encoding="Windows-1252"?> | <?xml version="1.0" encoding="Windows-1252"?> | ||||||
| <VisualStudioProject | <VisualStudioProject | ||||||
| 	ProjectType="Visual C++" |  | ||||||
| 	Version="7.10" |  | ||||||
| 	Name="Units" | 	Name="Units" | ||||||
| 	ProjectGUID="{0CFFC7B0-04F4-4A60-B6E4-84D78EDA2C73}" | 	Version="7.10" | ||||||
|  | 	ProjectType="Visual C++" | ||||||
|  | 	ProjectGUID="{A6800637-61D5-39A3-86AA-E180C73D3120}" | ||||||
|  | 	RootNamespace="Units" | ||||||
| 	Keyword="Win32Proj"> | 	Keyword="Win32Proj"> | ||||||
| 	<Platforms> | 	<Platforms> | ||||||
| 		<Platform | 		<Platform | ||||||
| @@ -12,16 +13,16 @@ | |||||||
| 	<Configurations> | 	<Configurations> | ||||||
| 		<Configuration | 		<Configuration | ||||||
| 			Name="debug_shared|Win32" | 			Name="debug_shared|Win32" | ||||||
| 			OutputDirectory="obj\debug_shared" | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
| 			IntermediateDirectory="obj\debug_shared" | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
| 			ConfigurationType="1" | 			ConfigurationType="1" | ||||||
| 			UseOfMFC="2" |  | ||||||
| 			CharacterSet="2"> | 			CharacterSet="2"> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCLCompilerTool" | 				Name="VCCLCompilerTool" | ||||||
| 				Optimization="0" | 				Optimization="0" | ||||||
| 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_DLL;WINVER=0x0500" | 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;" | ||||||
|  | 				StringPooling="TRUE" | ||||||
| 				MinimalRebuild="TRUE" | 				MinimalRebuild="TRUE" | ||||||
| 				BasicRuntimeChecks="3" | 				BasicRuntimeChecks="3" | ||||||
| 				RuntimeLibrary="3" | 				RuntimeLibrary="3" | ||||||
| @@ -30,18 +31,22 @@ | |||||||
| 				ForceConformanceInForLoopScope="TRUE" | 				ForceConformanceInForLoopScope="TRUE" | ||||||
| 				RuntimeTypeInfo="TRUE" | 				RuntimeTypeInfo="TRUE" | ||||||
| 				UsePrecompiledHeader="0" | 				UsePrecompiledHeader="0" | ||||||
|  | 				ObjectFile="$(IntDir)\" | ||||||
|  | 				ProgramDataBaseFileName="$(IntDir)\vc70.pdb" | ||||||
| 				WarningLevel="3" | 				WarningLevel="3" | ||||||
| 				Detect64BitPortabilityProblems="TRUE" | 				Detect64BitPortabilityProblems="FALSE" | ||||||
| 				DebugInformationFormat="4"/> | 				DebugInformationFormat="4" | ||||||
|  | 				DisableSpecificWarnings="4800;"/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCustomBuildTool"/> | 				Name="VCCustomBuildTool"/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCLinkerTool" | 				Name="VCLinkerTool" | ||||||
| 				OutputFile="bin/$(ProjectName)d.exe" | 				AdditionalDependencies="" | ||||||
|  | 				OutputFile="bin\Unitsd.exe" | ||||||
| 				LinkIncremental="2" | 				LinkIncremental="2" | ||||||
| 				AdditionalLibraryDirectories="..\..\..\lib" | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
| 				GenerateDebugInformation="TRUE" | 				GenerateDebugInformation="TRUE" | ||||||
| 				ProgramDatabaseFile="bin/$(ProjectName)d.pdb" | 				ProgramDatabaseFile="bin\Unitsd.pdb" | ||||||
| 				SubSystem="1" | 				SubSystem="1" | ||||||
| 				TargetMachine="1"/> | 				TargetMachine="1"/> | ||||||
| 			<Tool | 			<Tool | ||||||
| @@ -67,10 +72,9 @@ | |||||||
| 		</Configuration> | 		</Configuration> | ||||||
| 		<Configuration | 		<Configuration | ||||||
| 			Name="release_shared|Win32" | 			Name="release_shared|Win32" | ||||||
| 			OutputDirectory="obj\release_shared" | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
| 			IntermediateDirectory="obj\release_shared" | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
| 			ConfigurationType="1" | 			ConfigurationType="1" | ||||||
| 			UseOfMFC="2" |  | ||||||
| 			CharacterSet="2"> | 			CharacterSet="2"> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCLCompilerTool" | 				Name="VCCLCompilerTool" | ||||||
| @@ -81,7 +85,7 @@ | |||||||
| 				OmitFramePointers="TRUE" | 				OmitFramePointers="TRUE" | ||||||
| 				OptimizeForWindowsApplication="TRUE" | 				OptimizeForWindowsApplication="TRUE" | ||||||
| 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
| 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_DLL;WINVER=0x0500" | 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;" | ||||||
| 				StringPooling="TRUE" | 				StringPooling="TRUE" | ||||||
| 				RuntimeLibrary="2" | 				RuntimeLibrary="2" | ||||||
| 				BufferSecurityCheck="FALSE" | 				BufferSecurityCheck="FALSE" | ||||||
| @@ -89,14 +93,18 @@ | |||||||
| 				ForceConformanceInForLoopScope="TRUE" | 				ForceConformanceInForLoopScope="TRUE" | ||||||
| 				RuntimeTypeInfo="TRUE" | 				RuntimeTypeInfo="TRUE" | ||||||
| 				UsePrecompiledHeader="0" | 				UsePrecompiledHeader="0" | ||||||
|  | 				ObjectFile="$(IntDir)\" | ||||||
|  | 				ProgramDataBaseFileName="$(IntDir)\vc70.pdb" | ||||||
| 				WarningLevel="3" | 				WarningLevel="3" | ||||||
| 				Detect64BitPortabilityProblems="TRUE" | 				Detect64BitPortabilityProblems="FALSE" | ||||||
| 				DebugInformationFormat="3"/> | 				DebugInformationFormat="0" | ||||||
|  | 				DisableSpecificWarnings="4800;"/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCustomBuildTool"/> | 				Name="VCCustomBuildTool"/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCLinkerTool" | 				Name="VCLinkerTool" | ||||||
| 				OutputFile="bin/$(ProjectName).exe" | 				AdditionalDependencies="" | ||||||
|  | 				OutputFile="bin\Units.exe" | ||||||
| 				LinkIncremental="1" | 				LinkIncremental="1" | ||||||
| 				AdditionalLibraryDirectories="..\..\..\lib" | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
| 				GenerateDebugInformation="FALSE" | 				GenerateDebugInformation="FALSE" | ||||||
| @@ -127,37 +135,41 @@ | |||||||
| 				Name="VCAuxiliaryManagedWrapperGeneratorTool"/> | 				Name="VCAuxiliaryManagedWrapperGeneratorTool"/> | ||||||
| 		</Configuration> | 		</Configuration> | ||||||
| 		<Configuration | 		<Configuration | ||||||
| 			Name="debug_static|Win32" | 			Name="debug_static_mt|Win32" | ||||||
| 			OutputDirectory="obj\debug_static" | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
| 			IntermediateDirectory="obj\debug_static" | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
| 			ConfigurationType="1" | 			ConfigurationType="1" | ||||||
| 			UseOfMFC="2" |  | ||||||
| 			CharacterSet="2"> | 			CharacterSet="2"> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCLCompilerTool" | 				Name="VCCLCompilerTool" | ||||||
| 				Optimization="0" | 				Optimization="0" | ||||||
| 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;WINVER=0x0500" | 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
|  | 				StringPooling="TRUE" | ||||||
| 				MinimalRebuild="TRUE" | 				MinimalRebuild="TRUE" | ||||||
| 				BasicRuntimeChecks="3" | 				BasicRuntimeChecks="3" | ||||||
| 				RuntimeLibrary="3" | 				RuntimeLibrary="1" | ||||||
| 				BufferSecurityCheck="TRUE" | 				BufferSecurityCheck="TRUE" | ||||||
| 				TreatWChar_tAsBuiltInType="TRUE" | 				TreatWChar_tAsBuiltInType="TRUE" | ||||||
| 				ForceConformanceInForLoopScope="TRUE" | 				ForceConformanceInForLoopScope="TRUE" | ||||||
| 				RuntimeTypeInfo="TRUE" | 				RuntimeTypeInfo="TRUE" | ||||||
| 				UsePrecompiledHeader="0" | 				UsePrecompiledHeader="0" | ||||||
|  | 				ObjectFile="$(IntDir)\" | ||||||
|  | 				ProgramDataBaseFileName="$(IntDir)\vc70.pdb" | ||||||
| 				WarningLevel="3" | 				WarningLevel="3" | ||||||
| 				Detect64BitPortabilityProblems="TRUE" | 				Detect64BitPortabilityProblems="FALSE" | ||||||
| 				DebugInformationFormat="4"/> | 				DebugInformationFormat="4" | ||||||
|  | 				DisableSpecificWarnings="4800;"/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCustomBuildTool"/> | 				Name="VCCustomBuildTool"/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCLinkerTool" | 				Name="VCLinkerTool" | ||||||
| 				OutputFile="bin/$(ProjectName)mtd.exe" | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin\static_mt\Unitsd.exe" | ||||||
| 				LinkIncremental="2" | 				LinkIncremental="2" | ||||||
| 				AdditionalLibraryDirectories="..\..\..\lib" | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
| 				GenerateDebugInformation="TRUE" | 				GenerateDebugInformation="TRUE" | ||||||
| 				ProgramDatabaseFile="bin/$(ProjectName)mtd.pdb" | 				ProgramDatabaseFile="bin\static_mt\Unitsd.pdb" | ||||||
| 				SubSystem="1" | 				SubSystem="1" | ||||||
| 				TargetMachine="1"/> | 				TargetMachine="1"/> | ||||||
| 			<Tool | 			<Tool | ||||||
| @@ -182,11 +194,10 @@ | |||||||
| 				Name="VCAuxiliaryManagedWrapperGeneratorTool"/> | 				Name="VCAuxiliaryManagedWrapperGeneratorTool"/> | ||||||
| 		</Configuration> | 		</Configuration> | ||||||
| 		<Configuration | 		<Configuration | ||||||
| 			Name="release_static|Win32" | 			Name="release_static_mt|Win32" | ||||||
| 			OutputDirectory="obj\release_static" | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
| 			IntermediateDirectory="obj\release_static" | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
| 			ConfigurationType="1" | 			ConfigurationType="1" | ||||||
| 			UseOfMFC="2" |  | ||||||
| 			CharacterSet="2"> | 			CharacterSet="2"> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCLCompilerTool" | 				Name="VCCLCompilerTool" | ||||||
| @@ -197,7 +208,130 @@ | |||||||
| 				OmitFramePointers="TRUE" | 				OmitFramePointers="TRUE" | ||||||
| 				OptimizeForWindowsApplication="TRUE" | 				OptimizeForWindowsApplication="TRUE" | ||||||
| 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
| 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;WINVER=0x0500" | 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
|  | 				StringPooling="TRUE" | ||||||
|  | 				RuntimeLibrary="0" | ||||||
|  | 				BufferSecurityCheck="FALSE" | ||||||
|  | 				TreatWChar_tAsBuiltInType="TRUE" | ||||||
|  | 				ForceConformanceInForLoopScope="TRUE" | ||||||
|  | 				RuntimeTypeInfo="TRUE" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				ObjectFile="$(IntDir)\" | ||||||
|  | 				ProgramDataBaseFileName="$(IntDir)\vc70.pdb" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="FALSE" | ||||||
|  | 				DebugInformationFormat="0" | ||||||
|  | 				DisableSpecificWarnings="4800;"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin\static_mt\Units.exe" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
|  | 				GenerateDebugInformation="FALSE" | ||||||
|  | 				ProgramDatabaseFile="" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				OptimizeReferences="2" | ||||||
|  | 				EnableCOMDATFolding="2" | ||||||
|  | 				TargetMachine="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebDeploymentTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedWrapperGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCAuxiliaryManagedWrapperGeneratorTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="debug_static_md|Win32" | ||||||
|  | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="0" | ||||||
|  | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
|  | 				StringPooling="TRUE" | ||||||
|  | 				MinimalRebuild="TRUE" | ||||||
|  | 				BasicRuntimeChecks="3" | ||||||
|  | 				RuntimeLibrary="3" | ||||||
|  | 				BufferSecurityCheck="TRUE" | ||||||
|  | 				TreatWChar_tAsBuiltInType="TRUE" | ||||||
|  | 				ForceConformanceInForLoopScope="TRUE" | ||||||
|  | 				RuntimeTypeInfo="TRUE" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				ObjectFile="$(IntDir)\" | ||||||
|  | 				ProgramDataBaseFileName="$(IntDir)\vc70.pdb" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="FALSE" | ||||||
|  | 				DebugInformationFormat="4" | ||||||
|  | 				DisableSpecificWarnings="4800;"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin\static_md\Unitsd.exe" | ||||||
|  | 				LinkIncremental="2" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
|  | 				GenerateDebugInformation="TRUE" | ||||||
|  | 				ProgramDatabaseFile="bin\static_md\Unitsd.pdb" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				TargetMachine="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebDeploymentTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedWrapperGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCAuxiliaryManagedWrapperGeneratorTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="release_static_md|Win32" | ||||||
|  | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="4" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				EnableIntrinsicFunctions="TRUE" | ||||||
|  | 				FavorSizeOrSpeed="1" | ||||||
|  | 				OmitFramePointers="TRUE" | ||||||
|  | 				OptimizeForWindowsApplication="TRUE" | ||||||
|  | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
| 				StringPooling="TRUE" | 				StringPooling="TRUE" | ||||||
| 				RuntimeLibrary="2" | 				RuntimeLibrary="2" | ||||||
| 				BufferSecurityCheck="FALSE" | 				BufferSecurityCheck="FALSE" | ||||||
| @@ -205,14 +339,18 @@ | |||||||
| 				ForceConformanceInForLoopScope="TRUE" | 				ForceConformanceInForLoopScope="TRUE" | ||||||
| 				RuntimeTypeInfo="TRUE" | 				RuntimeTypeInfo="TRUE" | ||||||
| 				UsePrecompiledHeader="0" | 				UsePrecompiledHeader="0" | ||||||
|  | 				ObjectFile="$(IntDir)\" | ||||||
|  | 				ProgramDataBaseFileName="$(IntDir)\vc70.pdb" | ||||||
| 				WarningLevel="3" | 				WarningLevel="3" | ||||||
| 				Detect64BitPortabilityProblems="TRUE" | 				Detect64BitPortabilityProblems="FALSE" | ||||||
| 				DebugInformationFormat="3"/> | 				DebugInformationFormat="0" | ||||||
|  | 				DisableSpecificWarnings="4800;"/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCustomBuildTool"/> | 				Name="VCCustomBuildTool"/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCLinkerTool" | 				Name="VCLinkerTool" | ||||||
| 				OutputFile="bin/$(ProjectName)mt.exe" | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin\static_md\Units.exe" | ||||||
| 				LinkIncremental="1" | 				LinkIncremental="1" | ||||||
| 				AdditionalLibraryDirectories="..\..\..\lib" | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
| 				GenerateDebugInformation="FALSE" | 				GenerateDebugInformation="FALSE" | ||||||
| @@ -243,21 +381,15 @@ | |||||||
| 				Name="VCAuxiliaryManagedWrapperGeneratorTool"/> | 				Name="VCAuxiliaryManagedWrapperGeneratorTool"/> | ||||||
| 		</Configuration> | 		</Configuration> | ||||||
| 	</Configurations> | 	</Configurations> | ||||||
| 	<References> | 	<References/> | ||||||
| 	</References> |  | ||||||
| 	<Files> | 	<Files> | ||||||
| 		<Filter | 		<Filter | ||||||
| 			Name="Header Files" | 			Name="Header Files"/> | ||||||
| 			Filter=""> |  | ||||||
| 		</Filter> |  | ||||||
| 		<Filter | 		<Filter | ||||||
| 			Name="Source Files" | 			Name="Source Files"> | ||||||
| 			Filter=""> |  | ||||||
| 			<File | 			<File | ||||||
| 				RelativePath=".\src\Units.cpp"> | 				RelativePath=".\src\Units.cpp"/> | ||||||
| 			</File> |  | ||||||
| 		</Filter> | 		</Filter> | ||||||
| 	</Files> | 	</Files> | ||||||
| 	<Globals> | 	<Globals/> | ||||||
| 	</Globals> |  | ||||||
| </VisualStudioProject> | </VisualStudioProject> | ||||||
|   | |||||||
| @@ -1,48 +1,39 @@ | |||||||
| <?xml version="1.0" encoding="Windows-1252"?> | <?xml version="1.0" encoding="Windows-1252"?> | ||||||
| <VisualStudioProject | <VisualStudioProject | ||||||
| 	ProjectType="Visual C++" |  | ||||||
| 	Version="8.00" |  | ||||||
| 	Name="Units" | 	Name="Units" | ||||||
| 	ProjectGUID="{68D2608B-1915-4985-A671-1BA101959FA6}" | 	Version="8.00" | ||||||
| 	Keyword="Win32Proj" | 	ProjectType="Visual C++" | ||||||
| 	> | 	ProjectGUID="{A6800637-61D5-39A3-86AA-E180C73D3120}" | ||||||
|  | 	RootNamespace="Units" | ||||||
|  | 	Keyword="Win32Proj"> | ||||||
| 	<Platforms> | 	<Platforms> | ||||||
| 		<Platform | 		<Platform | ||||||
| 			Name="Win32" | 			Name="Win32"/> | ||||||
| 		/> |  | ||||||
| 	</Platforms> | 	</Platforms> | ||||||
| 	<ToolFiles> | 	<ToolFiles/> | ||||||
| 	</ToolFiles> |  | ||||||
| 	<Configurations> | 	<Configurations> | ||||||
| 		<Configuration | 		<Configuration | ||||||
| 			Name="debug_shared|Win32" | 			Name="debug_shared|Win32" | ||||||
| 			OutputDirectory="obj\debug_shared" | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
| 			IntermediateDirectory="obj\debug_shared" | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
| 			ConfigurationType="1" | 			ConfigurationType="1" | ||||||
| 			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | 			CharacterSet="2"> | ||||||
| 			UseOfMFC="2" |  | ||||||
| 			CharacterSet="2" |  | ||||||
| 			> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreBuildEventTool" | 				Name="VCPreBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCustomBuildTool" | 				Name="VCCustomBuildTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXMLDataGeneratorTool" | 				Name="VCXMLDataGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCWebServiceProxyGeneratorTool" | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCMIDLTool" | 				Name="VCMIDLTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCLCompilerTool" | 				Name="VCCLCompilerTool" | ||||||
| 				Optimization="0" | 				Optimization="0" | ||||||
| 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include" | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_DLL;WINVER=0x0500" | 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;" | ||||||
|  | 				StringPooling="true" | ||||||
| 				MinimalRebuild="true" | 				MinimalRebuild="true" | ||||||
| 				BasicRuntimeChecks="3" | 				BasicRuntimeChecks="3" | ||||||
| 				RuntimeLibrary="3" | 				RuntimeLibrary="3" | ||||||
| @@ -52,78 +43,58 @@ | |||||||
| 				RuntimeTypeInfo="true" | 				RuntimeTypeInfo="true" | ||||||
| 				UsePrecompiledHeader="0" | 				UsePrecompiledHeader="0" | ||||||
| 				WarningLevel="3" | 				WarningLevel="3" | ||||||
| 				Detect64BitPortabilityProblems="true" | 				Detect64BitPortabilityProblems="false" | ||||||
| 				DebugInformationFormat="4" | 				DebugInformationFormat="4" | ||||||
| 			/> | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManagedResourceCompilerTool" | 				Name="VCManagedResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCResourceCompilerTool" | 				Name="VCResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreLinkEventTool" | 				Name="VCPreLinkEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCLinkerTool" | 				Name="VCLinkerTool" | ||||||
| 				AdditionalDependencies="PocoFoundationd.lib PocoXMLd.lib PocoUtild.lib" | 				AdditionalDependencies="" | ||||||
| 				OutputFile="bin/$(ProjectName)d.exe" | 				OutputFile="bin\Unitsd.exe" | ||||||
| 				LinkIncremental="2" | 				LinkIncremental="2" | ||||||
| 				AdditionalLibraryDirectories="..\..\..\lib" | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
|  | 				SuppressStartupBanner="true" | ||||||
| 				GenerateDebugInformation="true" | 				GenerateDebugInformation="true" | ||||||
| 				ProgramDatabaseFile="bin/$(ProjectName)d.pdb" | 				ProgramDatabaseFile="bin\Unitsd.pdb" | ||||||
| 				SubSystem="1" | 				SubSystem="1" | ||||||
| 				TargetMachine="1" | 				TargetMachine="1"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCALinkTool" | 				Name="VCALinkTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManifestTool" | 				Name="VCManifestTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXDCMakeTool" | 				Name="VCXDCMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCBscMakeTool" | 				Name="VCBscMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCFxCopTool" | 				Name="VCFxCopTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCAppVerifierTool" | 				Name="VCAppVerifierTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCWebDeploymentTool" | 				Name="VCPostBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool |  | ||||||
| 				Name="VCPostBuildEventTool" |  | ||||||
| 			/> |  | ||||||
| 		</Configuration> | 		</Configuration> | ||||||
| 		<Configuration | 		<Configuration | ||||||
| 			Name="release_shared|Win32" | 			Name="release_shared|Win32" | ||||||
| 			OutputDirectory="obj\release_shared" | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
| 			IntermediateDirectory="obj\release_shared" | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
| 			ConfigurationType="1" | 			ConfigurationType="1" | ||||||
| 			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | 			CharacterSet="2"> | ||||||
| 			UseOfMFC="2" |  | ||||||
| 			CharacterSet="2" |  | ||||||
| 			> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreBuildEventTool" | 				Name="VCPreBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCustomBuildTool" | 				Name="VCCustomBuildTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXMLDataGeneratorTool" | 				Name="VCXMLDataGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCWebServiceProxyGeneratorTool" | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCMIDLTool" | 				Name="VCMIDLTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCLCompilerTool" | 				Name="VCCLCompilerTool" | ||||||
| 				Optimization="4" | 				Optimization="4" | ||||||
| @@ -131,8 +102,8 @@ | |||||||
| 				EnableIntrinsicFunctions="true" | 				EnableIntrinsicFunctions="true" | ||||||
| 				FavorSizeOrSpeed="1" | 				FavorSizeOrSpeed="1" | ||||||
| 				OmitFramePointers="true" | 				OmitFramePointers="true" | ||||||
| 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include" | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
| 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_DLL;WINVER=0x0500" | 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;" | ||||||
| 				StringPooling="true" | 				StringPooling="true" | ||||||
| 				RuntimeLibrary="2" | 				RuntimeLibrary="2" | ||||||
| 				BufferSecurityCheck="false" | 				BufferSecurityCheck="false" | ||||||
| @@ -141,85 +112,200 @@ | |||||||
| 				RuntimeTypeInfo="true" | 				RuntimeTypeInfo="true" | ||||||
| 				UsePrecompiledHeader="0" | 				UsePrecompiledHeader="0" | ||||||
| 				WarningLevel="3" | 				WarningLevel="3" | ||||||
| 				Detect64BitPortabilityProblems="true" | 				Detect64BitPortabilityProblems="false" | ||||||
| 				DebugInformationFormat="3" | 				DebugInformationFormat="0" | ||||||
| 			/> | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManagedResourceCompilerTool" | 				Name="VCManagedResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCResourceCompilerTool" | 				Name="VCResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreLinkEventTool" | 				Name="VCPreLinkEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCLinkerTool" | 				Name="VCLinkerTool" | ||||||
| 				AdditionalDependencies="PocoFoundation.lib PocoXML.lib PocoUtil.lib" | 				AdditionalDependencies="" | ||||||
| 				OutputFile="bin/$(ProjectName).exe" | 				OutputFile="bin\Units.exe" | ||||||
| 				LinkIncremental="1" | 				LinkIncremental="1" | ||||||
| 				AdditionalLibraryDirectories="..\..\..\lib" | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
| 				GenerateDebugInformation="false" | 				GenerateDebugInformation="false" | ||||||
| 				ProgramDatabaseFile="" |  | ||||||
| 				SubSystem="1" | 				SubSystem="1" | ||||||
| 				OptimizeReferences="2" | 				OptimizeReferences="2" | ||||||
| 				EnableCOMDATFolding="2" | 				EnableCOMDATFolding="2" | ||||||
| 				TargetMachine="1" | 				TargetMachine="1"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCALinkTool" | 				Name="VCALinkTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManifestTool" | 				Name="VCManifestTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXDCMakeTool" | 				Name="VCXDCMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCBscMakeTool" | 				Name="VCBscMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCFxCopTool" | 				Name="VCFxCopTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCAppVerifierTool" | 				Name="VCAppVerifierTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCWebDeploymentTool" | 				Name="VCPostBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool |  | ||||||
| 				Name="VCPostBuildEventTool" |  | ||||||
| 			/> |  | ||||||
| 		</Configuration> | 		</Configuration> | ||||||
| 		<Configuration | 		<Configuration | ||||||
| 			Name="debug_static|Win32" | 			Name="debug_static_mt|Win32" | ||||||
| 			OutputDirectory=".\obj\debug_static" | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
| 			IntermediateDirectory=".\obj\debug_static" | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
| 			ConfigurationType="1" | 			ConfigurationType="1" | ||||||
| 			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | 			CharacterSet="2"> | ||||||
| 			UseOfMFC="2" |  | ||||||
| 			CharacterSet="2" |  | ||||||
| 			> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreBuildEventTool" | 				Name="VCPreBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCustomBuildTool" | 				Name="VCCustomBuildTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXMLDataGeneratorTool" | 				Name="VCXMLDataGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCWebServiceProxyGeneratorTool" | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCMIDLTool" | 				Name="VCMIDLTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCLCompilerTool" | 				Name="VCCLCompilerTool" | ||||||
| 				Optimization="0" | 				Optimization="4" | ||||||
| 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include" | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;WINVER=0x0500" | 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				MinimalRebuild="true" | ||||||
|  | 				BasicRuntimeChecks="3" | ||||||
|  | 				RuntimeLibrary="1" | ||||||
|  | 				BufferSecurityCheck="true" | ||||||
|  | 				TreatWChar_tAsBuiltInType="true" | ||||||
|  | 				ForceConformanceInForLoopScope="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="false" | ||||||
|  | 				DebugInformationFormat="4" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin\static_mt\Unitsd.exe" | ||||||
|  | 				LinkIncremental="2" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
|  | 				SuppressStartupBanner="true" | ||||||
|  | 				GenerateDebugInformation="true" | ||||||
|  | 				ProgramDatabaseFile="bin\static_mt\Unitsd.pdb" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				TargetMachine="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManifestTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCAppVerifierTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="release_static_mt|Win32" | ||||||
|  | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="4" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				EnableIntrinsicFunctions="true" | ||||||
|  | 				FavorSizeOrSpeed="1" | ||||||
|  | 				OmitFramePointers="true" | ||||||
|  | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				RuntimeLibrary="0" | ||||||
|  | 				BufferSecurityCheck="false" | ||||||
|  | 				TreatWChar_tAsBuiltInType="true" | ||||||
|  | 				ForceConformanceInForLoopScope="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="false" | ||||||
|  | 				DebugInformationFormat="0" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin\static_mt\Units.exe" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
|  | 				GenerateDebugInformation="false" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				OptimizeReferences="2" | ||||||
|  | 				EnableCOMDATFolding="2" | ||||||
|  | 				TargetMachine="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManifestTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCAppVerifierTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="debug_static_md|Win32" | ||||||
|  | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="4" | ||||||
|  | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
|  | 				StringPooling="true" | ||||||
| 				MinimalRebuild="true" | 				MinimalRebuild="true" | ||||||
| 				BasicRuntimeChecks="3" | 				BasicRuntimeChecks="3" | ||||||
| 				RuntimeLibrary="3" | 				RuntimeLibrary="3" | ||||||
| @@ -229,78 +315,58 @@ | |||||||
| 				RuntimeTypeInfo="true" | 				RuntimeTypeInfo="true" | ||||||
| 				UsePrecompiledHeader="0" | 				UsePrecompiledHeader="0" | ||||||
| 				WarningLevel="3" | 				WarningLevel="3" | ||||||
| 				Detect64BitPortabilityProblems="true" | 				Detect64BitPortabilityProblems="false" | ||||||
| 				DebugInformationFormat="4" | 				DebugInformationFormat="4" | ||||||
| 			/> | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManagedResourceCompilerTool" | 				Name="VCManagedResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCResourceCompilerTool" | 				Name="VCResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreLinkEventTool" | 				Name="VCPreLinkEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCLinkerTool" | 				Name="VCLinkerTool" | ||||||
| 				AdditionalDependencies="PocoFoundationmtd.lib PocoXMLmtd.lib PocoUtilmtd.lib advapi32.lib" | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
| 				OutputFile="bin/$(ProjectName)d.exe" | 				OutputFile="bin\static_md\Unitsd.exe" | ||||||
| 				LinkIncremental="2" | 				LinkIncremental="2" | ||||||
| 				AdditionalLibraryDirectories="..\..\..\lib" | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
|  | 				SuppressStartupBanner="true" | ||||||
| 				GenerateDebugInformation="true" | 				GenerateDebugInformation="true" | ||||||
| 				ProgramDatabaseFile="bin/$(ProjectName)d.pdb" | 				ProgramDatabaseFile="bin\static_md\Unitsd.pdb" | ||||||
| 				SubSystem="1" | 				SubSystem="1" | ||||||
| 				TargetMachine="1" | 				TargetMachine="1"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCALinkTool" | 				Name="VCALinkTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManifestTool" | 				Name="VCManifestTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXDCMakeTool" | 				Name="VCXDCMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCBscMakeTool" | 				Name="VCBscMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCFxCopTool" | 				Name="VCFxCopTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCAppVerifierTool" | 				Name="VCAppVerifierTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCWebDeploymentTool" | 				Name="VCPostBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool |  | ||||||
| 				Name="VCPostBuildEventTool" |  | ||||||
| 			/> |  | ||||||
| 		</Configuration> | 		</Configuration> | ||||||
| 		<Configuration | 		<Configuration | ||||||
| 			Name="release_static|Win32" | 			Name="release_static_md|Win32" | ||||||
| 			OutputDirectory=".\obj\release_static" | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
| 			IntermediateDirectory=".\obj\release_static" | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
| 			ConfigurationType="1" | 			ConfigurationType="1" | ||||||
| 			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | 			CharacterSet="2"> | ||||||
| 			UseOfMFC="2" |  | ||||||
| 			CharacterSet="2" |  | ||||||
| 			> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreBuildEventTool" | 				Name="VCPreBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCustomBuildTool" | 				Name="VCCustomBuildTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXMLDataGeneratorTool" | 				Name="VCXMLDataGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCWebServiceProxyGeneratorTool" | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCMIDLTool" | 				Name="VCMIDLTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCLCompilerTool" | 				Name="VCCLCompilerTool" | ||||||
| 				Optimization="4" | 				Optimization="4" | ||||||
| @@ -308,8 +374,8 @@ | |||||||
| 				EnableIntrinsicFunctions="true" | 				EnableIntrinsicFunctions="true" | ||||||
| 				FavorSizeOrSpeed="1" | 				FavorSizeOrSpeed="1" | ||||||
| 				OmitFramePointers="true" | 				OmitFramePointers="true" | ||||||
| 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include" | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
| 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;WINVER=0x0500" | 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
| 				StringPooling="true" | 				StringPooling="true" | ||||||
| 				RuntimeLibrary="2" | 				RuntimeLibrary="2" | ||||||
| 				BufferSecurityCheck="false" | 				BufferSecurityCheck="false" | ||||||
| @@ -318,73 +384,52 @@ | |||||||
| 				RuntimeTypeInfo="true" | 				RuntimeTypeInfo="true" | ||||||
| 				UsePrecompiledHeader="0" | 				UsePrecompiledHeader="0" | ||||||
| 				WarningLevel="3" | 				WarningLevel="3" | ||||||
| 				Detect64BitPortabilityProblems="true" | 				Detect64BitPortabilityProblems="false" | ||||||
| 				DebugInformationFormat="3" | 				DebugInformationFormat="0" | ||||||
| 			/> | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManagedResourceCompilerTool" | 				Name="VCManagedResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCResourceCompilerTool" | 				Name="VCResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreLinkEventTool" | 				Name="VCPreLinkEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCLinkerTool" | 				Name="VCLinkerTool" | ||||||
| 				AdditionalDependencies="PocoFoundationmt.lib PocoXMLmt.lib PocoUtilmt.lib advapi32.lib" | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
| 				OutputFile="bin/$(ProjectName).exe" | 				OutputFile="bin\static_md\Units.exe" | ||||||
| 				LinkIncremental="1" | 				LinkIncremental="1" | ||||||
| 				AdditionalLibraryDirectories="..\..\..\lib" | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
| 				GenerateDebugInformation="false" | 				GenerateDebugInformation="false" | ||||||
| 				ProgramDatabaseFile="" |  | ||||||
| 				SubSystem="1" | 				SubSystem="1" | ||||||
| 				OptimizeReferences="2" | 				OptimizeReferences="2" | ||||||
| 				EnableCOMDATFolding="2" | 				EnableCOMDATFolding="2" | ||||||
| 				TargetMachine="1" | 				TargetMachine="1"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCALinkTool" | 				Name="VCALinkTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManifestTool" | 				Name="VCManifestTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXDCMakeTool" | 				Name="VCXDCMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCBscMakeTool" | 				Name="VCBscMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCFxCopTool" | 				Name="VCFxCopTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCAppVerifierTool" | 				Name="VCAppVerifierTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCWebDeploymentTool" | 				Name="VCPostBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool |  | ||||||
| 				Name="VCPostBuildEventTool" |  | ||||||
| 			/> |  | ||||||
| 		</Configuration> | 		</Configuration> | ||||||
| 	</Configurations> | 	</Configurations> | ||||||
| 	<References> | 	<References/> | ||||||
| 	</References> |  | ||||||
| 	<Files> | 	<Files> | ||||||
| 		<Filter | 		<Filter | ||||||
| 			Name="Header Files" | 			Name="Header Files"/> | ||||||
| 			> |  | ||||||
| 		</Filter> |  | ||||||
| 		<Filter | 		<Filter | ||||||
| 			Name="Source Files" | 			Name="Source Files"> | ||||||
| 			> |  | ||||||
| 			<File | 			<File | ||||||
| 				RelativePath=".\src\Units.cpp" | 				RelativePath=".\src\Units.cpp"/> | ||||||
| 				> |  | ||||||
| 			</File> |  | ||||||
| 		</Filter> | 		</Filter> | ||||||
| 	</Files> | 	</Files> | ||||||
| 	<Globals> | 	<Globals/> | ||||||
| 	</Globals> |  | ||||||
| </VisualStudioProject> | </VisualStudioProject> | ||||||
|   | |||||||
| @@ -1,48 +1,39 @@ | |||||||
| <?xml version="1.0" encoding="Windows-1252"?> | <?xml version="1.0" encoding="Windows-1252"?> | ||||||
| <VisualStudioProject | <VisualStudioProject | ||||||
| 	ProjectType="Visual C++" |  | ||||||
| 	Version="9.00" |  | ||||||
| 	Name="Units" | 	Name="Units" | ||||||
| 	ProjectGUID="{F0193386-C331-4144-97E6-CA4663A2CDF7}" | 	Version="9.00" | ||||||
| 	Keyword="Win32Proj" | 	ProjectType="Visual C++" | ||||||
| 	TargetFrameworkVersion="131072" | 	ProjectGUID="{A6800637-61D5-39A3-86AA-E180C73D3120}" | ||||||
| 	> | 	RootNamespace="Units" | ||||||
|  | 	Keyword="Win32Proj"> | ||||||
| 	<Platforms> | 	<Platforms> | ||||||
| 		<Platform | 		<Platform | ||||||
| 			Name="Win32" | 			Name="Win32"/> | ||||||
| 		/> |  | ||||||
| 	</Platforms> | 	</Platforms> | ||||||
| 	<ToolFiles> | 	<ToolFiles/> | ||||||
| 	</ToolFiles> |  | ||||||
| 	<Configurations> | 	<Configurations> | ||||||
| 		<Configuration | 		<Configuration | ||||||
| 			Name="debug_shared|Win32" | 			Name="debug_shared|Win32" | ||||||
| 			OutputDirectory="obj\debug_shared" | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
| 			IntermediateDirectory="obj\debug_shared" | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
| 			ConfigurationType="1" | 			ConfigurationType="1" | ||||||
| 			UseOfMFC="2" | 			CharacterSet="2"> | ||||||
| 			CharacterSet="2" |  | ||||||
| 			> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreBuildEventTool" | 				Name="VCPreBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCustomBuildTool" | 				Name="VCCustomBuildTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXMLDataGeneratorTool" | 				Name="VCXMLDataGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCWebServiceProxyGeneratorTool" | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCMIDLTool" | 				Name="VCMIDLTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCLCompilerTool" | 				Name="VCCLCompilerTool" | ||||||
| 				Optimization="0" | 				Optimization="0" | ||||||
| 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include" | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_DLL;WINVER=0x0500" | 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;" | ||||||
|  | 				StringPooling="true" | ||||||
| 				MinimalRebuild="true" | 				MinimalRebuild="true" | ||||||
| 				BasicRuntimeChecks="3" | 				BasicRuntimeChecks="3" | ||||||
| 				RuntimeLibrary="3" | 				RuntimeLibrary="3" | ||||||
| @@ -52,74 +43,58 @@ | |||||||
| 				RuntimeTypeInfo="true" | 				RuntimeTypeInfo="true" | ||||||
| 				UsePrecompiledHeader="0" | 				UsePrecompiledHeader="0" | ||||||
| 				WarningLevel="3" | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="false" | ||||||
| 				DebugInformationFormat="4" | 				DebugInformationFormat="4" | ||||||
| 			/> | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManagedResourceCompilerTool" | 				Name="VCManagedResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCResourceCompilerTool" | 				Name="VCResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreLinkEventTool" | 				Name="VCPreLinkEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCLinkerTool" | 				Name="VCLinkerTool" | ||||||
| 				OutputFile="bin/$(ProjectName)d.exe" | 				AdditionalDependencies="" | ||||||
|  | 				OutputFile="bin\Unitsd.exe" | ||||||
| 				LinkIncremental="2" | 				LinkIncremental="2" | ||||||
| 				AdditionalLibraryDirectories="..\..\..\lib" | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
|  | 				SuppressStartupBanner="true" | ||||||
| 				GenerateDebugInformation="true" | 				GenerateDebugInformation="true" | ||||||
| 				ProgramDatabaseFile="bin/$(ProjectName)d.pdb" | 				ProgramDatabaseFile="bin\Unitsd.pdb" | ||||||
| 				SubSystem="1" | 				SubSystem="1" | ||||||
| 				RandomizedBaseAddress="1" | 				TargetMachine="1"/> | ||||||
| 				DataExecutionPrevention="0" |  | ||||||
| 				TargetMachine="1" |  | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCALinkTool" | 				Name="VCALinkTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManifestTool" | 				Name="VCManifestTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXDCMakeTool" | 				Name="VCXDCMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCBscMakeTool" | 				Name="VCBscMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCFxCopTool" | 				Name="VCFxCopTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCAppVerifierTool" | 				Name="VCAppVerifierTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPostBuildEventTool" | 				Name="VCPostBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 		</Configuration> | 		</Configuration> | ||||||
| 		<Configuration | 		<Configuration | ||||||
| 			Name="release_shared|Win32" | 			Name="release_shared|Win32" | ||||||
| 			OutputDirectory="obj\release_shared" | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
| 			IntermediateDirectory="obj\release_shared" | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
| 			ConfigurationType="1" | 			ConfigurationType="1" | ||||||
| 			UseOfMFC="2" | 			CharacterSet="2"> | ||||||
| 			CharacterSet="2" |  | ||||||
| 			> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreBuildEventTool" | 				Name="VCPreBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCustomBuildTool" | 				Name="VCCustomBuildTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXMLDataGeneratorTool" | 				Name="VCXMLDataGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCWebServiceProxyGeneratorTool" | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCMIDLTool" | 				Name="VCMIDLTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCLCompilerTool" | 				Name="VCCLCompilerTool" | ||||||
| 				Optimization="4" | 				Optimization="4" | ||||||
| @@ -127,8 +102,8 @@ | |||||||
| 				EnableIntrinsicFunctions="true" | 				EnableIntrinsicFunctions="true" | ||||||
| 				FavorSizeOrSpeed="1" | 				FavorSizeOrSpeed="1" | ||||||
| 				OmitFramePointers="true" | 				OmitFramePointers="true" | ||||||
| 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include" | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
| 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_DLL;WINVER=0x0500" | 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;" | ||||||
| 				StringPooling="true" | 				StringPooling="true" | ||||||
| 				RuntimeLibrary="2" | 				RuntimeLibrary="2" | ||||||
| 				BufferSecurityCheck="false" | 				BufferSecurityCheck="false" | ||||||
| @@ -137,81 +112,200 @@ | |||||||
| 				RuntimeTypeInfo="true" | 				RuntimeTypeInfo="true" | ||||||
| 				UsePrecompiledHeader="0" | 				UsePrecompiledHeader="0" | ||||||
| 				WarningLevel="3" | 				WarningLevel="3" | ||||||
| 				DebugInformationFormat="3" | 				Detect64BitPortabilityProblems="false" | ||||||
| 			/> | 				DebugInformationFormat="0" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManagedResourceCompilerTool" | 				Name="VCManagedResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCResourceCompilerTool" | 				Name="VCResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreLinkEventTool" | 				Name="VCPreLinkEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCLinkerTool" | 				Name="VCLinkerTool" | ||||||
| 				OutputFile="bin/$(ProjectName).exe" | 				AdditionalDependencies="" | ||||||
|  | 				OutputFile="bin\Units.exe" | ||||||
| 				LinkIncremental="1" | 				LinkIncremental="1" | ||||||
| 				AdditionalLibraryDirectories="..\..\..\lib" | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
| 				GenerateDebugInformation="false" | 				GenerateDebugInformation="false" | ||||||
| 				ProgramDatabaseFile="" |  | ||||||
| 				SubSystem="1" | 				SubSystem="1" | ||||||
| 				OptimizeReferences="2" | 				OptimizeReferences="2" | ||||||
| 				EnableCOMDATFolding="2" | 				EnableCOMDATFolding="2" | ||||||
| 				RandomizedBaseAddress="1" | 				TargetMachine="1"/> | ||||||
| 				DataExecutionPrevention="0" |  | ||||||
| 				TargetMachine="1" |  | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCALinkTool" | 				Name="VCALinkTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManifestTool" | 				Name="VCManifestTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXDCMakeTool" | 				Name="VCXDCMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCBscMakeTool" | 				Name="VCBscMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCFxCopTool" | 				Name="VCFxCopTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCAppVerifierTool" | 				Name="VCAppVerifierTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPostBuildEventTool" | 				Name="VCPostBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 		</Configuration> | 		</Configuration> | ||||||
| 		<Configuration | 		<Configuration | ||||||
| 			Name="debug_static|Win32" | 			Name="debug_static_mt|Win32" | ||||||
| 			OutputDirectory=".\obj\debug_static" | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
| 			IntermediateDirectory=".\obj\debug_static" | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
| 			ConfigurationType="1" | 			ConfigurationType="1" | ||||||
| 			UseOfMFC="2" | 			CharacterSet="2"> | ||||||
| 			CharacterSet="2" |  | ||||||
| 			> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreBuildEventTool" | 				Name="VCPreBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCustomBuildTool" | 				Name="VCCustomBuildTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXMLDataGeneratorTool" | 				Name="VCXMLDataGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCWebServiceProxyGeneratorTool" | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCMIDLTool" | 				Name="VCMIDLTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCLCompilerTool" | 				Name="VCCLCompilerTool" | ||||||
| 				Optimization="0" | 				Optimization="4" | ||||||
| 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include" | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
| 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;WINVER=0x0500" | 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				MinimalRebuild="true" | ||||||
|  | 				BasicRuntimeChecks="3" | ||||||
|  | 				RuntimeLibrary="1" | ||||||
|  | 				BufferSecurityCheck="true" | ||||||
|  | 				TreatWChar_tAsBuiltInType="true" | ||||||
|  | 				ForceConformanceInForLoopScope="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="false" | ||||||
|  | 				DebugInformationFormat="4" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin\static_mt\Unitsd.exe" | ||||||
|  | 				LinkIncremental="2" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
|  | 				SuppressStartupBanner="true" | ||||||
|  | 				GenerateDebugInformation="true" | ||||||
|  | 				ProgramDatabaseFile="bin\static_mt\Unitsd.pdb" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				TargetMachine="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManifestTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCAppVerifierTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="release_static_mt|Win32" | ||||||
|  | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="4" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				EnableIntrinsicFunctions="true" | ||||||
|  | 				FavorSizeOrSpeed="1" | ||||||
|  | 				OmitFramePointers="true" | ||||||
|  | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				RuntimeLibrary="0" | ||||||
|  | 				BufferSecurityCheck="false" | ||||||
|  | 				TreatWChar_tAsBuiltInType="true" | ||||||
|  | 				ForceConformanceInForLoopScope="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="false" | ||||||
|  | 				DebugInformationFormat="0" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin\static_mt\Units.exe" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
|  | 				GenerateDebugInformation="false" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				OptimizeReferences="2" | ||||||
|  | 				EnableCOMDATFolding="2" | ||||||
|  | 				TargetMachine="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManifestTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCAppVerifierTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="debug_static_md|Win32" | ||||||
|  | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="4" | ||||||
|  | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
|  | 				StringPooling="true" | ||||||
| 				MinimalRebuild="true" | 				MinimalRebuild="true" | ||||||
| 				BasicRuntimeChecks="3" | 				BasicRuntimeChecks="3" | ||||||
| 				RuntimeLibrary="3" | 				RuntimeLibrary="3" | ||||||
| @@ -221,74 +315,58 @@ | |||||||
| 				RuntimeTypeInfo="true" | 				RuntimeTypeInfo="true" | ||||||
| 				UsePrecompiledHeader="0" | 				UsePrecompiledHeader="0" | ||||||
| 				WarningLevel="3" | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="false" | ||||||
| 				DebugInformationFormat="4" | 				DebugInformationFormat="4" | ||||||
| 			/> | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManagedResourceCompilerTool" | 				Name="VCManagedResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCResourceCompilerTool" | 				Name="VCResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreLinkEventTool" | 				Name="VCPreLinkEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCLinkerTool" | 				Name="VCLinkerTool" | ||||||
| 				OutputFile="bin/$(ProjectName)mtd.exe" | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin\static_md\Unitsd.exe" | ||||||
| 				LinkIncremental="2" | 				LinkIncremental="2" | ||||||
| 				AdditionalLibraryDirectories="..\..\..\lib" | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
|  | 				SuppressStartupBanner="true" | ||||||
| 				GenerateDebugInformation="true" | 				GenerateDebugInformation="true" | ||||||
| 				ProgramDatabaseFile="bin/$(ProjectName)d.pdb" | 				ProgramDatabaseFile="bin\static_md\Unitsd.pdb" | ||||||
| 				SubSystem="1" | 				SubSystem="1" | ||||||
| 				RandomizedBaseAddress="1" | 				TargetMachine="1"/> | ||||||
| 				DataExecutionPrevention="0" |  | ||||||
| 				TargetMachine="1" |  | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCALinkTool" | 				Name="VCALinkTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManifestTool" | 				Name="VCManifestTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXDCMakeTool" | 				Name="VCXDCMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCBscMakeTool" | 				Name="VCBscMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCFxCopTool" | 				Name="VCFxCopTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCAppVerifierTool" | 				Name="VCAppVerifierTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPostBuildEventTool" | 				Name="VCPostBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 		</Configuration> | 		</Configuration> | ||||||
| 		<Configuration | 		<Configuration | ||||||
| 			Name="release_static|Win32" | 			Name="release_static_md|Win32" | ||||||
| 			OutputDirectory=".\obj\release_static" | 			OutputDirectory="obj\$(ConfigurationName)" | ||||||
| 			IntermediateDirectory=".\obj\release_static" | 			IntermediateDirectory="obj\$(ConfigurationName)" | ||||||
| 			ConfigurationType="1" | 			ConfigurationType="1" | ||||||
| 			UseOfMFC="2" | 			CharacterSet="2"> | ||||||
| 			CharacterSet="2" |  | ||||||
| 			> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreBuildEventTool" | 				Name="VCPreBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCustomBuildTool" | 				Name="VCCustomBuildTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXMLDataGeneratorTool" | 				Name="VCXMLDataGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCWebServiceProxyGeneratorTool" | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCMIDLTool" | 				Name="VCMIDLTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCCLCompilerTool" | 				Name="VCCLCompilerTool" | ||||||
| 				Optimization="4" | 				Optimization="4" | ||||||
| @@ -296,8 +374,8 @@ | |||||||
| 				EnableIntrinsicFunctions="true" | 				EnableIntrinsicFunctions="true" | ||||||
| 				FavorSizeOrSpeed="1" | 				FavorSizeOrSpeed="1" | ||||||
| 				OmitFramePointers="true" | 				OmitFramePointers="true" | ||||||
| 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include" | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
| 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;WINVER=0x0500" | 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
| 				StringPooling="true" | 				StringPooling="true" | ||||||
| 				RuntimeLibrary="2" | 				RuntimeLibrary="2" | ||||||
| 				BufferSecurityCheck="false" | 				BufferSecurityCheck="false" | ||||||
| @@ -306,70 +384,52 @@ | |||||||
| 				RuntimeTypeInfo="true" | 				RuntimeTypeInfo="true" | ||||||
| 				UsePrecompiledHeader="0" | 				UsePrecompiledHeader="0" | ||||||
| 				WarningLevel="3" | 				WarningLevel="3" | ||||||
| 				DebugInformationFormat="3" | 				Detect64BitPortabilityProblems="false" | ||||||
| 			/> | 				DebugInformationFormat="0" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManagedResourceCompilerTool" | 				Name="VCManagedResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCResourceCompilerTool" | 				Name="VCResourceCompilerTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPreLinkEventTool" | 				Name="VCPreLinkEventTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCLinkerTool" | 				Name="VCLinkerTool" | ||||||
| 				OutputFile="bin/$(ProjectName)mt.exe" | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin\static_md\Units.exe" | ||||||
| 				LinkIncremental="1" | 				LinkIncremental="1" | ||||||
| 				AdditionalLibraryDirectories="..\..\..\lib" | 				AdditionalLibraryDirectories="..\..\..\lib" | ||||||
| 				GenerateDebugInformation="false" | 				GenerateDebugInformation="false" | ||||||
| 				ProgramDatabaseFile="" |  | ||||||
| 				SubSystem="1" | 				SubSystem="1" | ||||||
| 				OptimizeReferences="2" | 				OptimizeReferences="2" | ||||||
| 				EnableCOMDATFolding="2" | 				EnableCOMDATFolding="2" | ||||||
| 				RandomizedBaseAddress="1" | 				TargetMachine="1"/> | ||||||
| 				DataExecutionPrevention="0" |  | ||||||
| 				TargetMachine="1" |  | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCALinkTool" | 				Name="VCALinkTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCManifestTool" | 				Name="VCManifestTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCXDCMakeTool" | 				Name="VCXDCMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCBscMakeTool" | 				Name="VCBscMakeTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCFxCopTool" | 				Name="VCFxCopTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCAppVerifierTool" | 				Name="VCAppVerifierTool"/> | ||||||
| 			/> |  | ||||||
| 			<Tool | 			<Tool | ||||||
| 				Name="VCPostBuildEventTool" | 				Name="VCPostBuildEventTool"/> | ||||||
| 			/> |  | ||||||
| 		</Configuration> | 		</Configuration> | ||||||
| 	</Configurations> | 	</Configurations> | ||||||
| 	<References> | 	<References/> | ||||||
| 	</References> |  | ||||||
| 	<Files> | 	<Files> | ||||||
| 		<Filter | 		<Filter | ||||||
| 			Name="Header Files" | 			Name="Header Files"/> | ||||||
| 			> |  | ||||||
| 		</Filter> |  | ||||||
| 		<Filter | 		<Filter | ||||||
| 			Name="Source Files" | 			Name="Source Files"> | ||||||
| 			> |  | ||||||
| 			<File | 			<File | ||||||
| 				RelativePath=".\src\Units.cpp" | 				RelativePath=".\src\Units.cpp"/> | ||||||
| 				> |  | ||||||
| 			</File> |  | ||||||
| 		</Filter> | 		</Filter> | ||||||
| 	</Files> | 	</Files> | ||||||
| 	<Globals> | 	<Globals/> | ||||||
| 	</Globals> |  | ||||||
| </VisualStudioProject> | </VisualStudioProject> | ||||||
|   | |||||||
							
								
								
									
										299
									
								
								Util/samples/Units/Units_x64_vs100.vcxproj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										299
									
								
								Util/samples/Units/Units_x64_vs100.vcxproj
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,299 @@ | |||||||
|  | <?xml version="1.0" encoding="UTF-8"?> | ||||||
|  | <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||||
|  |   <ItemGroup Label="ProjectConfigurations"> | ||||||
|  |     <ProjectConfiguration Include="debug_shared|x64"> | ||||||
|  |       <Configuration>debug_shared</Configuration> | ||||||
|  |       <Platform>x64</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="debug_static_md|x64"> | ||||||
|  |       <Configuration>debug_static_md</Configuration> | ||||||
|  |       <Platform>x64</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="debug_static_mt|x64"> | ||||||
|  |       <Configuration>debug_static_mt</Configuration> | ||||||
|  |       <Platform>x64</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="release_shared|x64"> | ||||||
|  |       <Configuration>release_shared</Configuration> | ||||||
|  |       <Platform>x64</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="release_static_md|x64"> | ||||||
|  |       <Configuration>release_static_md</Configuration> | ||||||
|  |       <Platform>x64</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="release_static_mt|x64"> | ||||||
|  |       <Configuration>release_static_mt</Configuration> | ||||||
|  |       <Platform>x64</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |   </ItemGroup> | ||||||
|  |   <PropertyGroup Label="Globals"> | ||||||
|  |     <ProjectName>Units</ProjectName> | ||||||
|  |     <ProjectGuid>{A6800637-61D5-39A3-86AA-E180C73D3120}</ProjectGuid> | ||||||
|  |     <RootNamespace>Units</RootNamespace> | ||||||
|  |     <Keyword>Win32Proj</Keyword> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release_static_md|x64'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>Application</ConfigurationType> | ||||||
|  |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_md|x64'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>Application</ConfigurationType> | ||||||
|  |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release_static_mt|x64'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>Application</ConfigurationType> | ||||||
|  |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|x64'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>Application</ConfigurationType> | ||||||
|  |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release_shared|x64'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>Application</ConfigurationType> | ||||||
|  |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug_shared|x64'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>Application</ConfigurationType> | ||||||
|  |     <CharacterSet>MultiByte</CharacterSet> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/> | ||||||
|  |   <ImportGroup Label="ExtensionSettings"/> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='release_static_md|x64'" Label="PropertySheets"> | ||||||
|  |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_md|x64'" Label="PropertySheets"> | ||||||
|  |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='release_static_mt|x64'" Label="PropertySheets"> | ||||||
|  |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|x64'" Label="PropertySheets"> | ||||||
|  |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='release_shared|x64'" Label="PropertySheets"> | ||||||
|  |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='debug_shared|x64'" Label="PropertySheets"> | ||||||
|  |     <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <PropertyGroup Label="UserMacros"/> | ||||||
|  |   <PropertyGroup> | ||||||
|  |     <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='debug_shared|x64'">bin64\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='debug_shared|x64'">obj64\$(Configuration)\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='debug_shared|x64'">true</LinkIncremental> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='release_shared|x64'">bin64\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='release_shared|x64'">obj64\$(Configuration)\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='release_shared|x64'">false</LinkIncremental> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|x64'">bin64\static_mt\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|x64'">obj64\$(Configuration)\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|x64'">true</LinkIncremental> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='release_static_mt|x64'">bin64\static_mt\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='release_static_mt|x64'">obj64\$(Configuration)\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='release_static_mt|x64'">false</LinkIncremental> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='debug_static_md|x64'">bin64\static_md\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='debug_static_md|x64'">obj64\$(Configuration)\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='debug_static_md|x64'">true</LinkIncremental> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='release_static_md|x64'">bin64\static_md\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='release_static_md|x64'">obj64\$(Configuration)\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='release_static_md|x64'">false</LinkIncremental> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='debug_shared|x64'">Unitsd</TargetName> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='debug_static_md|x64'">Unitsd</TargetName> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|x64'">Unitsd</TargetName> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='release_shared|x64'">Units</TargetName> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='release_static_md|x64'">Units</TargetName> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='release_static_mt|x64'">Units</TargetName> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug_shared|x64'"> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <AdditionalIncludeDirectories>.\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <MinimalRebuild>true</MinimalRebuild> | ||||||
|  |       <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>true</BufferSecurityCheck> | ||||||
|  |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|  |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|  |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|  |       <PrecompiledHeader/> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||||||
|  |       <CompileAs>Default</CompileAs> | ||||||
|  |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|  |     </ClCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>bin64\Unitsd.exe</OutputFile> | ||||||
|  |       <AdditionalLibraryDirectories>..\..\..\lib64;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <GenerateDebugInformation>true</GenerateDebugInformation> | ||||||
|  |       <ProgramDatabaseFile>bin64\Unitsd.pdb</ProgramDatabaseFile> | ||||||
|  |       <SubSystem>Console</SubSystem> | ||||||
|  |       <TargetMachine>MachineX64</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release_shared|x64'"> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
|  |       <IntrinsicFunctions>true</IntrinsicFunctions> | ||||||
|  |       <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed> | ||||||
|  |       <OmitFramePointers>true</OmitFramePointers> | ||||||
|  |       <AdditionalIncludeDirectories>.\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>false</BufferSecurityCheck> | ||||||
|  |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|  |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|  |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|  |       <PrecompiledHeader/> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <DebugInformationFormat/> | ||||||
|  |       <CompileAs>Default</CompileAs> | ||||||
|  |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|  |     </ClCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>bin64\Units.exe</OutputFile> | ||||||
|  |       <AdditionalLibraryDirectories>..\..\..\lib64;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||||||
|  |       <GenerateDebugInformation>false</GenerateDebugInformation> | ||||||
|  |       <SubSystem>Console</SubSystem> | ||||||
|  |       <OptimizeReferences>true</OptimizeReferences> | ||||||
|  |       <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||||||
|  |       <TargetMachine>MachineX64</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_mt|x64'"> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <AdditionalIncludeDirectories>.\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <MinimalRebuild>true</MinimalRebuild> | ||||||
|  |       <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>true</BufferSecurityCheck> | ||||||
|  |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|  |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|  |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|  |       <PrecompiledHeader/> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||||||
|  |       <CompileAs>Default</CompileAs> | ||||||
|  |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|  |     </ClCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalDependencies>iphlpapi.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>bin64\static_mt\Unitsd.exe</OutputFile> | ||||||
|  |       <AdditionalLibraryDirectories>..\..\..\lib64;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <GenerateDebugInformation>true</GenerateDebugInformation> | ||||||
|  |       <ProgramDatabaseFile>bin64\static_mt\Unitsd.pdb</ProgramDatabaseFile> | ||||||
|  |       <SubSystem>Console</SubSystem> | ||||||
|  |       <TargetMachine>MachineX64</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release_static_mt|x64'"> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
|  |       <IntrinsicFunctions>true</IntrinsicFunctions> | ||||||
|  |       <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed> | ||||||
|  |       <OmitFramePointers>true</OmitFramePointers> | ||||||
|  |       <AdditionalIncludeDirectories>.\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>false</BufferSecurityCheck> | ||||||
|  |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|  |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|  |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|  |       <PrecompiledHeader/> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <DebugInformationFormat/> | ||||||
|  |       <CompileAs>Default</CompileAs> | ||||||
|  |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|  |     </ClCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalDependencies>iphlpapi.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>bin64\static_mt\Units.exe</OutputFile> | ||||||
|  |       <AdditionalLibraryDirectories>..\..\..\lib64;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||||||
|  |       <GenerateDebugInformation>false</GenerateDebugInformation> | ||||||
|  |       <SubSystem>Console</SubSystem> | ||||||
|  |       <OptimizeReferences>true</OptimizeReferences> | ||||||
|  |       <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||||||
|  |       <TargetMachine>MachineX64</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug_static_md|x64'"> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <AdditionalIncludeDirectories>.\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <MinimalRebuild>true</MinimalRebuild> | ||||||
|  |       <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>true</BufferSecurityCheck> | ||||||
|  |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|  |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|  |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|  |       <PrecompiledHeader/> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||||||
|  |       <CompileAs>Default</CompileAs> | ||||||
|  |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|  |     </ClCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalDependencies>iphlpapi.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>bin64\static_md\Unitsd.exe</OutputFile> | ||||||
|  |       <AdditionalLibraryDirectories>..\..\..\lib64;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <GenerateDebugInformation>true</GenerateDebugInformation> | ||||||
|  |       <ProgramDatabaseFile>bin64\static_md\Unitsd.pdb</ProgramDatabaseFile> | ||||||
|  |       <SubSystem>Console</SubSystem> | ||||||
|  |       <TargetMachine>MachineX64</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release_static_md|x64'"> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
|  |       <IntrinsicFunctions>true</IntrinsicFunctions> | ||||||
|  |       <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed> | ||||||
|  |       <OmitFramePointers>true</OmitFramePointers> | ||||||
|  |       <AdditionalIncludeDirectories>.\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>false</BufferSecurityCheck> | ||||||
|  |       <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> | ||||||
|  |       <ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope> | ||||||
|  |       <RuntimeTypeInfo>true</RuntimeTypeInfo> | ||||||
|  |       <PrecompiledHeader/> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <DebugInformationFormat/> | ||||||
|  |       <CompileAs>Default</CompileAs> | ||||||
|  |       <DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings> | ||||||
|  |     </ClCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalDependencies>iphlpapi.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>bin64\static_md\Units.exe</OutputFile> | ||||||
|  |       <AdditionalLibraryDirectories>..\..\..\lib64;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||||||
|  |       <GenerateDebugInformation>false</GenerateDebugInformation> | ||||||
|  |       <SubSystem>Console</SubSystem> | ||||||
|  |       <OptimizeReferences>true</OptimizeReferences> | ||||||
|  |       <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||||||
|  |       <TargetMachine>MachineX64</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemGroup> | ||||||
|  |     <ClCompile Include="src\Units.cpp"/> | ||||||
|  |   </ItemGroup> | ||||||
|  |   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/> | ||||||
|  |   <ImportGroup Label="ExtensionTargets"/> | ||||||
|  | </Project> | ||||||
							
								
								
									
										16
									
								
								Util/samples/Units/Units_x64_vs100.vcxproj.filters
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								Util/samples/Units/Units_x64_vs100.vcxproj.filters
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,16 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||||
|  |   <ItemGroup> | ||||||
|  |     <Filter Include="Header Files"> | ||||||
|  |       <UniqueIdentifier>{b40ec4c5-25e8-442d-be92-e0493020723e}</UniqueIdentifier> | ||||||
|  |     </Filter> | ||||||
|  |     <Filter Include="Source Files"> | ||||||
|  |       <UniqueIdentifier>{91b7c4f6-8714-44f0-a55b-697714a39da8}</UniqueIdentifier> | ||||||
|  |     </Filter> | ||||||
|  |   </ItemGroup> | ||||||
|  |   <ItemGroup> | ||||||
|  |     <ClCompile Include="src\Units.cpp"> | ||||||
|  |       <Filter>Source Files</Filter> | ||||||
|  |     </ClCompile> | ||||||
|  |   </ItemGroup> | ||||||
|  | </Project> | ||||||
							
								
								
									
										435
									
								
								Util/samples/Units/Units_x64_vs90.vcproj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										435
									
								
								Util/samples/Units/Units_x64_vs90.vcproj
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,435 @@ | |||||||
|  | <?xml version="1.0" encoding="Windows-1252"?> | ||||||
|  | <VisualStudioProject | ||||||
|  | 	Name="Units" | ||||||
|  | 	Version="9.00" | ||||||
|  | 	ProjectType="Visual C++" | ||||||
|  | 	ProjectGUID="{A6800637-61D5-39A3-86AA-E180C73D3120}" | ||||||
|  | 	RootNamespace="Units" | ||||||
|  | 	Keyword="Win32Proj"> | ||||||
|  | 	<Platforms> | ||||||
|  | 		<Platform | ||||||
|  | 			Name="x64"/> | ||||||
|  | 	</Platforms> | ||||||
|  | 	<ToolFiles/> | ||||||
|  | 	<Configurations> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="debug_shared|x64" | ||||||
|  | 			OutputDirectory="obj64\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj64\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="0" | ||||||
|  | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				MinimalRebuild="true" | ||||||
|  | 				BasicRuntimeChecks="3" | ||||||
|  | 				RuntimeLibrary="3" | ||||||
|  | 				BufferSecurityCheck="true" | ||||||
|  | 				TreatWChar_tAsBuiltInType="true" | ||||||
|  | 				ForceConformanceInForLoopScope="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="false" | ||||||
|  | 				DebugInformationFormat="3" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalDependencies="" | ||||||
|  | 				OutputFile="bin64\Unitsd.exe" | ||||||
|  | 				LinkIncremental="2" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib64" | ||||||
|  | 				SuppressStartupBanner="true" | ||||||
|  | 				GenerateDebugInformation="true" | ||||||
|  | 				ProgramDatabaseFile="bin64\Unitsd.pdb" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				TargetMachine="17"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManifestTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCAppVerifierTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="release_shared|x64" | ||||||
|  | 			OutputDirectory="obj64\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj64\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="4" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				EnableIntrinsicFunctions="true" | ||||||
|  | 				FavorSizeOrSpeed="1" | ||||||
|  | 				OmitFramePointers="true" | ||||||
|  | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				RuntimeLibrary="2" | ||||||
|  | 				BufferSecurityCheck="false" | ||||||
|  | 				TreatWChar_tAsBuiltInType="true" | ||||||
|  | 				ForceConformanceInForLoopScope="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="false" | ||||||
|  | 				DebugInformationFormat="0" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalDependencies="" | ||||||
|  | 				OutputFile="bin64\Units.exe" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib64" | ||||||
|  | 				GenerateDebugInformation="false" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				OptimizeReferences="2" | ||||||
|  | 				EnableCOMDATFolding="2" | ||||||
|  | 				TargetMachine="17"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManifestTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCAppVerifierTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="debug_static_mt|x64" | ||||||
|  | 			OutputDirectory="obj64\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj64\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="4" | ||||||
|  | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				MinimalRebuild="true" | ||||||
|  | 				BasicRuntimeChecks="3" | ||||||
|  | 				RuntimeLibrary="1" | ||||||
|  | 				BufferSecurityCheck="true" | ||||||
|  | 				TreatWChar_tAsBuiltInType="true" | ||||||
|  | 				ForceConformanceInForLoopScope="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="false" | ||||||
|  | 				DebugInformationFormat="3" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin64\static_mt\Unitsd.exe" | ||||||
|  | 				LinkIncremental="2" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib64" | ||||||
|  | 				SuppressStartupBanner="true" | ||||||
|  | 				GenerateDebugInformation="true" | ||||||
|  | 				ProgramDatabaseFile="bin64\static_mt\Unitsd.pdb" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				TargetMachine="17"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManifestTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCAppVerifierTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="release_static_mt|x64" | ||||||
|  | 			OutputDirectory="obj64\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj64\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="4" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				EnableIntrinsicFunctions="true" | ||||||
|  | 				FavorSizeOrSpeed="1" | ||||||
|  | 				OmitFramePointers="true" | ||||||
|  | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				RuntimeLibrary="0" | ||||||
|  | 				BufferSecurityCheck="false" | ||||||
|  | 				TreatWChar_tAsBuiltInType="true" | ||||||
|  | 				ForceConformanceInForLoopScope="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="false" | ||||||
|  | 				DebugInformationFormat="0" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin64\static_mt\Units.exe" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib64" | ||||||
|  | 				GenerateDebugInformation="false" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				OptimizeReferences="2" | ||||||
|  | 				EnableCOMDATFolding="2" | ||||||
|  | 				TargetMachine="17"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManifestTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCAppVerifierTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="debug_static_md|x64" | ||||||
|  | 			OutputDirectory="obj64\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj64\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="4" | ||||||
|  | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				MinimalRebuild="true" | ||||||
|  | 				BasicRuntimeChecks="3" | ||||||
|  | 				RuntimeLibrary="3" | ||||||
|  | 				BufferSecurityCheck="true" | ||||||
|  | 				TreatWChar_tAsBuiltInType="true" | ||||||
|  | 				ForceConformanceInForLoopScope="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="false" | ||||||
|  | 				DebugInformationFormat="3" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin64\static_md\Unitsd.exe" | ||||||
|  | 				LinkIncremental="2" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib64" | ||||||
|  | 				SuppressStartupBanner="true" | ||||||
|  | 				GenerateDebugInformation="true" | ||||||
|  | 				ProgramDatabaseFile="bin64\static_md\Unitsd.pdb" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				TargetMachine="17"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManifestTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCAppVerifierTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="release_static_md|x64" | ||||||
|  | 			OutputDirectory="obj64\$(ConfigurationName)" | ||||||
|  | 			IntermediateDirectory="obj64\$(ConfigurationName)" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXMLDataGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="4" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				EnableIntrinsicFunctions="true" | ||||||
|  | 				FavorSizeOrSpeed="1" | ||||||
|  | 				OmitFramePointers="true" | ||||||
|  | 				AdditionalIncludeDirectories=".\include;..\..\..\Foundation\include;..\..\..\Util\include" | ||||||
|  | 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;" | ||||||
|  | 				StringPooling="true" | ||||||
|  | 				RuntimeLibrary="2" | ||||||
|  | 				BufferSecurityCheck="false" | ||||||
|  | 				TreatWChar_tAsBuiltInType="true" | ||||||
|  | 				ForceConformanceInForLoopScope="true" | ||||||
|  | 				RuntimeTypeInfo="true" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="false" | ||||||
|  | 				DebugInformationFormat="0" | ||||||
|  | 				CompileAs="0" | ||||||
|  | 				DisableSpecificWarnings=""/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManagedResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalDependencies="iphlpapi.lib winmm.lib " | ||||||
|  | 				OutputFile="bin64\static_md\Units.exe" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				AdditionalLibraryDirectories="..\..\..\lib64" | ||||||
|  | 				GenerateDebugInformation="false" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				OptimizeReferences="2" | ||||||
|  | 				EnableCOMDATFolding="2" | ||||||
|  | 				TargetMachine="17"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCALinkTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCManifestTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCXDCMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCBscMakeTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCFxCopTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCAppVerifierTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 	</Configurations> | ||||||
|  | 	<References/> | ||||||
|  | 	<Files> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Header Files"/> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Source Files"> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\src\Units.cpp"/> | ||||||
|  | 		</Filter> | ||||||
|  | 	</Files> | ||||||
|  | 	<Globals/> | ||||||
|  | </VisualStudioProject> | ||||||
| @@ -1,36 +1,36 @@ | |||||||
| // | // | ||||||
| // Units.cpp | // Units.cpp | ||||||
| // | // | ||||||
| // $Id: //poco/svn/Util/samples/Units/src/Units.cpp#1 $ | // $Id: //poco/svn/Util/samples/Units/src/Units.cpp#1 $ | ||||||
| // | // | ||||||
| // This sample demonstrates the Units. | // This sample demonstrates the Units. | ||||||
| // | // | ||||||
| // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. | // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. | ||||||
| // and Contributors. | // and Contributors. | ||||||
| // | // | ||||||
| // Permission is hereby granted, free of charge, to any person or organization | // Permission is hereby granted, free of charge, to any person or organization | ||||||
| // obtaining a copy of the software and accompanying documentation covered by | // obtaining a copy of the software and accompanying documentation covered by | ||||||
| // this license (the "Software") to use, reproduce, display, distribute, | // this license (the "Software") to use, reproduce, display, distribute, | ||||||
| // execute, and transmit the Software, and to prepare derivative works of the | // execute, and transmit the Software, and to prepare derivative works of the | ||||||
| // Software, and to permit third-parties to whom the Software is furnished to | // Software, and to permit third-parties to whom the Software is furnished to | ||||||
| // do so, all subject to the following: | // do so, all subject to the following: | ||||||
| //  | //  | ||||||
| // The copyright notices in the Software and this entire statement, including | // The copyright notices in the Software and this entire statement, including | ||||||
| // the above license grant, this restriction and the following disclaimer, | // the above license grant, this restriction and the following disclaimer, | ||||||
| // must be included in all copies of the Software, in whole or in part, and | // must be included in all copies of the Software, in whole or in part, and | ||||||
| // all derivative works of the Software, unless such copies or derivative | // all derivative works of the Software, unless such copies or derivative | ||||||
| // works are solely in the form of machine-executable object code generated by | // works are solely in the form of machine-executable object code generated by | ||||||
| // a source language processor. | // a source language processor. | ||||||
| //  | //  | ||||||
| // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||||||
| // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||||||
| // FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT | // FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT | ||||||
| // SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE | // SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE | ||||||
| // FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, | // FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, | ||||||
| // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||||||
| // DEALINGS IN THE SOFTWARE. | // DEALINGS IN THE SOFTWARE. | ||||||
| // | // | ||||||
|  |  | ||||||
|  |  | ||||||
| #include "Poco/Util/Units.h" | #include "Poco/Util/Units.h" | ||||||
| #include <iostream> | #include <iostream> | ||||||
|   | |||||||
| @@ -4,4 +4,5 @@ vc.solution.create = true | |||||||
| vc.solution.include = \ | vc.solution.include = \ | ||||||
| 	pkill\\pkill;\ | 	pkill\\pkill;\ | ||||||
| 	SampleApp\\SampleApp;\ | 	SampleApp\\SampleApp;\ | ||||||
| 	SampleServer\\SampleServer | 	SampleServer\\SampleServer;\ | ||||||
|  | 	Units\\Units | ||||||
|   | |||||||
| @@ -6,6 +6,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleApp", "SampleApp\Samp | |||||||
| EndProject | EndProject | ||||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleServer", "SampleServer\SampleServer_CE_vs90.vcproj", "{F475C5DD-0558-37AF-870B-666DE931B7BA}" | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleServer", "SampleServer\SampleServer_CE_vs90.vcproj", "{F475C5DD-0558-37AF-870B-666DE931B7BA}" | ||||||
| EndProject | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Units", "Units\Units_CE_vs90.vcproj", "{A6800637-61D5-39A3-86AA-E180C73D3120}" | ||||||
|  | EndProject | ||||||
| Global | Global | ||||||
| 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||||||
| 		debug_shared|Digi JumpStart (ARMV4I) = debug_shared|Digi JumpStart (ARMV4I) | 		debug_shared|Digi JumpStart (ARMV4I) = debug_shared|Digi JumpStart (ARMV4I) | ||||||
| @@ -70,6 +72,24 @@ Global | |||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Digi JumpStart (ARMV4I).ActiveCfg = release_static_md|Digi JumpStart (ARMV4I) | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Digi JumpStart (ARMV4I).ActiveCfg = release_static_md|Digi JumpStart (ARMV4I) | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Digi JumpStart (ARMV4I).Build.0 = release_static_md|Digi JumpStart (ARMV4I) | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Digi JumpStart (ARMV4I).Build.0 = release_static_md|Digi JumpStart (ARMV4I) | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Digi JumpStart (ARMV4I).Deploy.0 = release_static_md|Digi JumpStart (ARMV4I) | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Digi JumpStart (ARMV4I).Deploy.0 = release_static_md|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|Digi JumpStart (ARMV4I).ActiveCfg = debug_shared|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|Digi JumpStart (ARMV4I).Build.0 = debug_shared|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|Digi JumpStart (ARMV4I).Deploy.0 = debug_shared|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|Digi JumpStart (ARMV4I).ActiveCfg = release_shared|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|Digi JumpStart (ARMV4I).Build.0 = release_shared|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|Digi JumpStart (ARMV4I).Deploy.0 = release_shared|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|Digi JumpStart (ARMV4I).ActiveCfg = debug_static_mt|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|Digi JumpStart (ARMV4I).Build.0 = debug_static_mt|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|Digi JumpStart (ARMV4I).Deploy.0 = debug_static_mt|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|Digi JumpStart (ARMV4I).ActiveCfg = release_static_mt|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|Digi JumpStart (ARMV4I).Build.0 = release_static_mt|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|Digi JumpStart (ARMV4I).Deploy.0 = release_static_mt|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|Digi JumpStart (ARMV4I).ActiveCfg = debug_static_md|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|Digi JumpStart (ARMV4I).Build.0 = debug_static_md|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|Digi JumpStart (ARMV4I).Deploy.0 = debug_static_md|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|Digi JumpStart (ARMV4I).ActiveCfg = release_static_md|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|Digi JumpStart (ARMV4I).Build.0 = release_static_md|Digi JumpStart (ARMV4I) | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|Digi JumpStart (ARMV4I).Deploy.0 = release_static_md|Digi JumpStart (ARMV4I) | ||||||
| 	EndGlobalSection | 	EndGlobalSection | ||||||
| 	GlobalSection(SolutionProperties) = preSolution | 	GlobalSection(SolutionProperties) = preSolution | ||||||
| 		HideSolutionNode = FALSE | 		HideSolutionNode = FALSE | ||||||
|   | |||||||
| @@ -6,6 +6,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleApp", "SampleApp\Samp | |||||||
| EndProject | EndProject | ||||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleServer", "SampleServer\SampleServer_vs100.vcxproj", "{F475C5DD-0558-37AF-870B-666DE931B7BA}" | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleServer", "SampleServer\SampleServer_vs100.vcxproj", "{F475C5DD-0558-37AF-870B-666DE931B7BA}" | ||||||
| EndProject | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Units", "Units\Units_vs100.vcxproj", "{A6800637-61D5-39A3-86AA-E180C73D3120}" | ||||||
|  | EndProject | ||||||
| Global | Global | ||||||
| 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||||||
| 		debug_shared|Win32 = debug_shared|Win32 | 		debug_shared|Win32 = debug_shared|Win32 | ||||||
| @@ -70,6 +72,24 @@ Global | |||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.Build.0 = release_static_md|Win32 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.Build.0 = release_static_md|Win32 | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|Win32.Build.0 = debug_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|Win32.ActiveCfg = release_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|Win32.Build.0 = release_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|Win32.Deploy.0 = release_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|Win32.Build.0 = release_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 | ||||||
| 	EndGlobalSection | 	EndGlobalSection | ||||||
| 	GlobalSection(SolutionProperties) = preSolution | 	GlobalSection(SolutionProperties) = preSolution | ||||||
| 		HideSolutionNode = FALSE | 		HideSolutionNode = FALSE | ||||||
|   | |||||||
| @@ -11,6 +11,10 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleServer", "SampleServe | |||||||
| 	ProjectSection(ProjectDependencies) = postProject | 	ProjectSection(ProjectDependencies) = postProject | ||||||
| 	EndProjectSection | 	EndProjectSection | ||||||
| EndProject | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Units", "Units\Units_vs71.vcproj", "{A6800637-61D5-39A3-86AA-E180C73D3120}" | ||||||
|  | 	ProjectSection(ProjectDependencies) = postProject | ||||||
|  | 	EndProjectSection | ||||||
|  | EndProject | ||||||
| Global | Global | ||||||
| 	GlobalSection(SolutionConfiguration) = preSolution | 	GlobalSection(SolutionConfiguration) = preSolution | ||||||
| 		debug_shared = debug_shared | 		debug_shared = debug_shared | ||||||
| @@ -57,6 +61,18 @@ Global | |||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_md.Build.0 = debug_static_md|Win32 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_md.Build.0 = debug_static_md|Win32 | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md.ActiveCfg = release_static_md|Win32 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md.ActiveCfg = release_static_md|Win32 | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md.Build.0 = release_static_md|Win32 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md.Build.0 = release_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared.ActiveCfg = debug_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared.Build.0 = debug_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared.ActiveCfg = release_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared.Build.0 = release_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt.ActiveCfg = debug_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt.Build.0 = debug_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt.ActiveCfg = release_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt.Build.0 = release_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md.ActiveCfg = debug_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md.Build.0 = debug_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md.ActiveCfg = release_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md.Build.0 = release_static_md|Win32 | ||||||
| 	EndGlobalSection | 	EndGlobalSection | ||||||
| 	GlobalSection(ExtensibilityGlobals) = postSolution | 	GlobalSection(ExtensibilityGlobals) = postSolution | ||||||
| 	EndGlobalSection | 	EndGlobalSection | ||||||
|   | |||||||
| @@ -6,6 +6,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleApp", "SampleApp\Samp | |||||||
| EndProject | EndProject | ||||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleServer", "SampleServer\SampleServer_vs80.vcproj", "{F475C5DD-0558-37AF-870B-666DE931B7BA}" | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleServer", "SampleServer\SampleServer_vs80.vcproj", "{F475C5DD-0558-37AF-870B-666DE931B7BA}" | ||||||
| EndProject | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Units", "Units\Units_vs80.vcproj", "{A6800637-61D5-39A3-86AA-E180C73D3120}" | ||||||
|  | EndProject | ||||||
| Global | Global | ||||||
| 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||||||
| 		debug_shared|Win32 = debug_shared|Win32 | 		debug_shared|Win32 = debug_shared|Win32 | ||||||
| @@ -70,6 +72,24 @@ Global | |||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.Build.0 = release_static_md|Win32 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.Build.0 = release_static_md|Win32 | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|Win32.Build.0 = debug_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|Win32.ActiveCfg = release_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|Win32.Build.0 = release_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|Win32.Deploy.0 = release_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|Win32.Build.0 = release_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 | ||||||
| 	EndGlobalSection | 	EndGlobalSection | ||||||
| 	GlobalSection(SolutionProperties) = preSolution | 	GlobalSection(SolutionProperties) = preSolution | ||||||
| 		HideSolutionNode = FALSE | 		HideSolutionNode = FALSE | ||||||
|   | |||||||
| @@ -6,6 +6,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleApp", "SampleApp\Samp | |||||||
| EndProject | EndProject | ||||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleServer", "SampleServer\SampleServer_vs90.vcproj", "{F475C5DD-0558-37AF-870B-666DE931B7BA}" | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleServer", "SampleServer\SampleServer_vs90.vcproj", "{F475C5DD-0558-37AF-870B-666DE931B7BA}" | ||||||
| EndProject | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Units", "Units\Units_vs90.vcproj", "{A6800637-61D5-39A3-86AA-E180C73D3120}" | ||||||
|  | EndProject | ||||||
| Global | Global | ||||||
| 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||||||
| 		debug_shared|Win32 = debug_shared|Win32 | 		debug_shared|Win32 = debug_shared|Win32 | ||||||
| @@ -70,6 +72,24 @@ Global | |||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.Build.0 = release_static_md|Win32 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.Build.0 = release_static_md|Win32 | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|Win32.Build.0 = debug_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|Win32.ActiveCfg = release_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|Win32.Build.0 = release_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|Win32.Deploy.0 = release_shared|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|Win32.Build.0 = release_static_md|Win32 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 | ||||||
| 	EndGlobalSection | 	EndGlobalSection | ||||||
| 	GlobalSection(SolutionProperties) = preSolution | 	GlobalSection(SolutionProperties) = preSolution | ||||||
| 		HideSolutionNode = FALSE | 		HideSolutionNode = FALSE | ||||||
|   | |||||||
| @@ -6,6 +6,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleApp", "SampleApp\Samp | |||||||
| EndProject | EndProject | ||||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleServer", "SampleServer\SampleServer_x64_vs100.vcxproj", "{F475C5DD-0558-37AF-870B-666DE931B7BA}" | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleServer", "SampleServer\SampleServer_x64_vs100.vcxproj", "{F475C5DD-0558-37AF-870B-666DE931B7BA}" | ||||||
| EndProject | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Units", "Units\Units_x64_vs100.vcxproj", "{A6800637-61D5-39A3-86AA-E180C73D3120}" | ||||||
|  | EndProject | ||||||
| Global | Global | ||||||
| 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||||||
| 		debug_shared|x64 = debug_shared|x64 | 		debug_shared|x64 = debug_shared|x64 | ||||||
| @@ -70,6 +72,24 @@ Global | |||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|x64.ActiveCfg = release_static_md|x64 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|x64.ActiveCfg = release_static_md|x64 | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|x64.Build.0 = release_static_md|x64 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|x64.Build.0 = release_static_md|x64 | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|x64.Deploy.0 = release_static_md|x64 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|x64.Deploy.0 = release_static_md|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|x64.ActiveCfg = debug_shared|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|x64.Build.0 = debug_shared|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|x64.Deploy.0 = debug_shared|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|x64.ActiveCfg = release_shared|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|x64.Build.0 = release_shared|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|x64.Deploy.0 = release_shared|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|x64.Build.0 = release_static_mt|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|x64.Build.0 = debug_static_md|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|x64.ActiveCfg = release_static_md|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|x64.Build.0 = release_static_md|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|x64.Deploy.0 = release_static_md|x64 | ||||||
| 	EndGlobalSection | 	EndGlobalSection | ||||||
| 	GlobalSection(SolutionProperties) = preSolution | 	GlobalSection(SolutionProperties) = preSolution | ||||||
| 		HideSolutionNode = FALSE | 		HideSolutionNode = FALSE | ||||||
|   | |||||||
| @@ -6,6 +6,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleApp", "SampleApp\Samp | |||||||
| EndProject | EndProject | ||||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleServer", "SampleServer\SampleServer_x64_vs90.vcproj", "{F475C5DD-0558-37AF-870B-666DE931B7BA}" | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleServer", "SampleServer\SampleServer_x64_vs90.vcproj", "{F475C5DD-0558-37AF-870B-666DE931B7BA}" | ||||||
| EndProject | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Units", "Units\Units_x64_vs90.vcproj", "{A6800637-61D5-39A3-86AA-E180C73D3120}" | ||||||
|  | EndProject | ||||||
| Global | Global | ||||||
| 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||||||
| 		debug_shared|x64 = debug_shared|x64 | 		debug_shared|x64 = debug_shared|x64 | ||||||
| @@ -70,6 +72,24 @@ Global | |||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|x64.ActiveCfg = release_static_md|x64 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|x64.ActiveCfg = release_static_md|x64 | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|x64.Build.0 = release_static_md|x64 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|x64.Build.0 = release_static_md|x64 | ||||||
| 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|x64.Deploy.0 = release_static_md|x64 | 		{F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|x64.Deploy.0 = release_static_md|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|x64.ActiveCfg = debug_shared|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|x64.Build.0 = debug_shared|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|x64.Deploy.0 = debug_shared|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|x64.ActiveCfg = release_shared|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|x64.Build.0 = release_shared|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|x64.Deploy.0 = release_shared|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|x64.Build.0 = release_static_mt|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|x64.Build.0 = debug_static_md|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|x64.ActiveCfg = release_static_md|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|x64.Build.0 = release_static_md|x64 | ||||||
|  | 		{A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|x64.Deploy.0 = release_static_md|x64 | ||||||
| 	EndGlobalSection | 	EndGlobalSection | ||||||
| 	GlobalSection(SolutionProperties) = preSolution | 	GlobalSection(SolutionProperties) = preSolution | ||||||
| 		HideSolutionNode = FALSE | 		HideSolutionNode = FALSE | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Aleksandar Fabijanic
					Aleksandar Fabijanic