DOOM-3-BFG

DOOM 3 BFG Edition
Log | Files | Refs

timidity.vcxproj (4936B)


      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   <ItemGroup>
     14     <ClInclude Include="common.h" />
     15     <ClInclude Include="config.h" />
     16     <ClInclude Include="controls.h" />
     17     <ClInclude Include="filter.h" />
     18     <ClInclude Include="instrum.h" />
     19     <ClInclude Include="mix.h" />
     20     <ClInclude Include="output.h" />
     21     <ClInclude Include="playmidi.h" />
     22     <ClInclude Include="readmidi.h" />
     23     <ClInclude Include="resample.h" />
     24     <ClInclude Include="structs.h" />
     25     <ClInclude Include="tables.h" />
     26     <ClInclude Include="timidity.h" />
     27   </ItemGroup>
     28   <ItemGroup>
     29     <ClCompile Include="common.cpp" />
     30     <ClCompile Include="controls.cpp" />
     31     <ClCompile Include="filter.cpp" />
     32     <ClCompile Include="instrum.cpp" />
     33     <ClCompile Include="mix.cpp" />
     34     <ClCompile Include="output.cpp" />
     35     <ClCompile Include="playmidi.cpp" />
     36     <ClCompile Include="readmidi.cpp" />
     37     <ClCompile Include="resample.cpp" />
     38     <ClCompile Include="sdl_a.cpp" />
     39     <ClCompile Include="sdl_c.cpp" />
     40     <ClCompile Include="tables.cpp" />
     41     <ClCompile Include="timidity.cpp" />
     42   </ItemGroup>
     43   <PropertyGroup Label="Globals">
     44     <ProjectGuid>{3267F0ED-FE57-4348-91D7-AA8A4976750F}</ProjectGuid>
     45     <Keyword>Win32Proj</Keyword>
     46     <RootNamespace>timidity</RootNamespace>
     47     <SccProjectName>
     48     </SccProjectName>
     49     <SccAuxPath>
     50     </SccAuxPath>
     51     <SccLocalPath>
     52     </SccLocalPath>
     53     <SccProvider>
     54     </SccProvider>
     55   </PropertyGroup>
     56   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
     57   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
     58     <ConfigurationType>StaticLibrary</ConfigurationType>
     59     <UseDebugLibraries>true</UseDebugLibraries>
     60     <CharacterSet>Unicode</CharacterSet>
     61   </PropertyGroup>
     62   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
     63     <ConfigurationType>StaticLibrary</ConfigurationType>
     64     <UseDebugLibraries>false</UseDebugLibraries>
     65     <WholeProgramOptimization>true</WholeProgramOptimization>
     66     <CharacterSet>Unicode</CharacterSet>
     67   </PropertyGroup>
     68   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
     69   <ImportGroup Label="ExtensionSettings">
     70   </ImportGroup>
     71   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     72     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     73     <Import Project="..\DoomClassicCommon.props" />
     74   </ImportGroup>
     75   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     76     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     77     <Import Project="..\DoomClassicCommon.props" />
     78   </ImportGroup>
     79   <PropertyGroup Label="UserMacros" />
     80   <PropertyGroup />
     81   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     82     <ClCompile>
     83       <PrecompiledHeader>
     84       </PrecompiledHeader>
     85       <WarningLevel>Level3</WarningLevel>
     86       <Optimization>Disabled</Optimization>
     87       <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
     88       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
     89     </ClCompile>
     90     <Link>
     91       <SubSystem>Windows</SubSystem>
     92       <GenerateDebugInformation>true</GenerateDebugInformation>
     93     </Link>
     94   </ItemDefinitionGroup>
     95   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     96     <ClCompile>
     97       <WarningLevel>Level3</WarningLevel>
     98       <PrecompiledHeader>
     99       </PrecompiledHeader>
    100       <Optimization>MaxSpeed</Optimization>
    101       <FunctionLevelLinking>true</FunctionLevelLinking>
    102       <IntrinsicFunctions>true</IntrinsicFunctions>
    103       <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    104       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
    105     </ClCompile>
    106     <Link>
    107       <SubSystem>Windows</SubSystem>
    108       <GenerateDebugInformation>true</GenerateDebugInformation>
    109       <EnableCOMDATFolding>true</EnableCOMDATFolding>
    110       <OptimizeReferences>true</OptimizeReferences>
    111     </Link>
    112   </ItemDefinitionGroup>
    113   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
    114   <ImportGroup Label="ExtensionTargets">
    115   </ImportGroup>
    116 </Project>