iMONDisplayWrapper.vcxproj
author sl
Sun, 16 Mar 2014 09:11:39 +0100
changeset 0 523a7dc3469f
permissions -rw-r--r--
First contribution.
     1 <?xml version="1.0" encoding="utf-8"?>
     2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
     3   <ItemGroup Label="ProjectConfigurations">
     4     <ProjectConfiguration Include="Debug|Win32">
     5       <Configuration>Debug</Configuration>
     6       <Platform>Win32</Platform>
     7     </ProjectConfiguration>
     8     <ProjectConfiguration Include="Release|Win32">
     9       <Configuration>Release</Configuration>
    10       <Platform>Win32</Platform>
    11     </ProjectConfiguration>
    12   </ItemGroup>
    13   <PropertyGroup Label="Globals">
    14     <ProjectGuid>{E1A2655B-02A2-437A-8270-4AD81DDDC502}</ProjectGuid>
    15     <RootNamespace>iMONDisplayWrapper</RootNamespace>
    16     <Keyword>Win32Proj</Keyword>
    17   </PropertyGroup>
    18   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
    19   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
    20     <ConfigurationType>DynamicLibrary</ConfigurationType>
    21     <PlatformToolset>v110</PlatformToolset>
    22     <CharacterSet>Unicode</CharacterSet>
    23     <WholeProgramOptimization>true</WholeProgramOptimization>
    24   </PropertyGroup>
    25   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
    26     <ConfigurationType>DynamicLibrary</ConfigurationType>
    27     <PlatformToolset>v110</PlatformToolset>
    28     <CharacterSet>Unicode</CharacterSet>
    29   </PropertyGroup>
    30   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
    31   <ImportGroup Label="ExtensionSettings">
    32   </ImportGroup>
    33   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
    34     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
    35   </ImportGroup>
    36   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
    37     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
    38   </ImportGroup>
    39   <PropertyGroup Label="UserMacros" />
    40   <PropertyGroup>
    41     <_ProjectFileVersion>11.0.61030.0</_ProjectFileVersion>
    42   </PropertyGroup>
    43   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
    44     <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
    45     <IntDir>$(Configuration)\</IntDir>
    46     <LinkIncremental>true</LinkIncremental>
    47   </PropertyGroup>
    48   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
    49     <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
    50     <IntDir>$(Configuration)\</IntDir>
    51     <LinkIncremental>false</LinkIncremental>
    52   </PropertyGroup>
    53   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
    54     <ClCompile>
    55       <Optimization>Disabled</Optimization>
    56       <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;IMONDISPLAYWRAPPER_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    57       <MinimalRebuild>true</MinimalRebuild>
    58       <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
    59       <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
    60       <PrecompiledHeader />
    61       <WarningLevel>Level3</WarningLevel>
    62       <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
    63     </ClCompile>
    64     <Link>
    65       <AdditionalDependencies>iMONDisplay.lib;%(AdditionalDependencies)</AdditionalDependencies>
    66       <GenerateDebugInformation>true</GenerateDebugInformation>
    67       <SubSystem>Windows</SubSystem>
    68       <TargetMachine>MachineX86</TargetMachine>
    69     </Link>
    70   </ItemDefinitionGroup>
    71   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
    72     <ClCompile>
    73       <Optimization>MaxSpeed</Optimization>
    74       <IntrinsicFunctions>true</IntrinsicFunctions>
    75       <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;IMONDISPLAYWRAPPER_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    76       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
    77       <FunctionLevelLinking>true</FunctionLevelLinking>
    78       <PrecompiledHeader />
    79       <WarningLevel>Level3</WarningLevel>
    80       <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
    81     </ClCompile>
    82     <Link>
    83       <AdditionalDependencies>iMONDisplay.lib;%(AdditionalDependencies)</AdditionalDependencies>
    84       <GenerateDebugInformation>true</GenerateDebugInformation>
    85       <SubSystem>Windows</SubSystem>
    86       <OptimizeReferences>true</OptimizeReferences>
    87       <EnableCOMDATFolding>true</EnableCOMDATFolding>
    88       <TargetMachine>MachineX86</TargetMachine>
    89     </Link>
    90   </ItemDefinitionGroup>
    91   <ItemGroup>
    92     <ClCompile Include="Event.cpp" />
    93     <ClCompile Include="IdwApi.cpp" />
    94     <ClCompile Include="IdwThread.cpp" />
    95     <ClCompile Include="iMONDisplayWrapper.cpp" />
    96     <ClCompile Include="Mutex.cpp" />
    97     <ClCompile Include="Thread.cpp" />
    98   </ItemGroup>
    99   <ItemGroup>
   100     <ClInclude Include="Event.h" />
   101     <ClInclude Include="IdwApi.h" />
   102     <ClInclude Include="IdwThread.h" />
   103     <ClInclude Include="iMONDisplayAPI.h" />
   104     <ClInclude Include="iMONDisplayDefines.h" />
   105     <ClInclude Include="iMONDisplayWrapper.h" />
   106     <ClInclude Include="Mutex.h" />
   107     <ClInclude Include="resource.h" />
   108     <ClInclude Include="Thread.h" />
   109   </ItemGroup>
   110   <ItemGroup>
   111     <ResourceCompile Include="iMONDisplayWrapper.rc" />
   112   </ItemGroup>
   113   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   114   <ImportGroup Label="ExtensionTargets">
   115   </ImportGroup>
   116 </Project>