alac.vcxproj 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ItemGroup Label="ProjectConfigurations">
  4. <ProjectConfiguration Include="Release|Win32">
  5. <Configuration>Release</Configuration>
  6. <Platform>Win32</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Release|x64">
  9. <Configuration>Release</Configuration>
  10. <Platform>x64</Platform>
  11. </ProjectConfiguration>
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ClCompile Include="ag_dec.c" />
  15. <ClCompile Include="ag_enc.c" />
  16. <ClCompile Include="ALACBitUtilities.c" />
  17. <ClCompile Include="ALACDecoder.cpp" />
  18. <ClCompile Include="ALACEncoder.cpp" />
  19. <ClCompile Include="dp_dec.c" />
  20. <ClCompile Include="dp_enc.c" />
  21. <ClCompile Include="EndianPortable.c" />
  22. <ClCompile Include="matrix_dec.c" />
  23. <ClCompile Include="matrix_enc.c" />
  24. </ItemGroup>
  25. <PropertyGroup Label="Globals">
  26. <VCProjectVersion>16.0</VCProjectVersion>
  27. <Keyword>Win32Proj</Keyword>
  28. <ProjectGuid>{73ae36f4-6af9-46b0-a682-4321d57ef8e7}</ProjectGuid>
  29. <RootNamespace>alac</RootNamespace>
  30. <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
  31. </PropertyGroup>
  32. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  33. <PropertyGroup>
  34. <IntDir>build\$(Configuration)\$(Platform)</IntDir>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  37. <ConfigurationType>StaticLibrary</ConfigurationType>
  38. <UseDebugLibraries>false</UseDebugLibraries>
  39. <PlatformToolset>v143</PlatformToolset>
  40. <WholeProgramOptimization>true</WholeProgramOptimization>
  41. <CharacterSet>Unicode</CharacterSet>
  42. <OutDir>..\targets\win32\x86</OutDir>
  43. </PropertyGroup>
  44. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  45. <ConfigurationType>StaticLibrary</ConfigurationType>
  46. <UseDebugLibraries>false</UseDebugLibraries>
  47. <PlatformToolset>v143</PlatformToolset>
  48. <WholeProgramOptimization>true</WholeProgramOptimization>
  49. <CharacterSet>Unicode</CharacterSet>
  50. <OutDir>..\targets\win32\$(Platform)</OutDir>
  51. </PropertyGroup>
  52. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  53. <ImportGroup Label="ExtensionSettings">
  54. </ImportGroup>
  55. <ImportGroup Label="Shared">
  56. </ImportGroup>
  57. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  58. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  59. </ImportGroup>
  60. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  61. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  62. </ImportGroup>
  63. <PropertyGroup Label="UserMacros" />
  64. <ItemDefinitionGroup>
  65. <ClCompile>
  66. <WarningLevel>Level3</WarningLevel>
  67. <FunctionLevelLinking>true</FunctionLevelLinking>
  68. <IntrinsicFunctions>true</IntrinsicFunctions>
  69. <SDLCheck>false</SDLCheck>
  70. <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  71. <ConformanceMode>true</ConformanceMode>
  72. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  73. </ClCompile>
  74. <Link>
  75. <SubSystem>
  76. </SubSystem>
  77. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  78. <OptimizeReferences>true</OptimizeReferences>
  79. <GenerateDebugInformation>true</GenerateDebugInformation>
  80. </Link>
  81. </ItemDefinitionGroup>
  82. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  83. <ImportGroup Label="ExtensionTargets">
  84. </ImportGroup>
  85. </Project>