DSPTool.vcxproj 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ItemGroup Label="ProjectConfigurations">
  4. <ProjectConfiguration Include="Debug|x64">
  5. <Configuration>Debug</Configuration>
  6. <Platform>x64</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Release|x64">
  9. <Configuration>Release</Configuration>
  10. <Platform>x64</Platform>
  11. </ProjectConfiguration>
  12. </ItemGroup>
  13. <PropertyGroup Label="Globals">
  14. <ProjectGuid>{1970D175-3DE8-4738-942A-4D98D1CDBF64}</ProjectGuid>
  15. </PropertyGroup>
  16. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  17. <PropertyGroup Label="Configuration">
  18. <ConfigurationType>Application</ConfigurationType>
  19. <PlatformToolset>v120</PlatformToolset>
  20. <CharacterSet>Unicode</CharacterSet>
  21. </PropertyGroup>
  22. <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
  23. <UseDebugLibraries>true</UseDebugLibraries>
  24. </PropertyGroup>
  25. <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
  26. <UseDebugLibraries>false</UseDebugLibraries>
  27. </PropertyGroup>
  28. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  29. <ImportGroup Label="ExtensionSettings">
  30. </ImportGroup>
  31. <ImportGroup Label="PropertySheets">
  32. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  33. <Import Project="..\VSProps\Base.props" />
  34. <Import Project="..\VSProps\PCHUse.props" />
  35. </ImportGroup>
  36. <PropertyGroup Label="UserMacros" />
  37. <ItemDefinitionGroup>
  38. <Link>
  39. <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
  40. <SubSystem>Console</SubSystem>
  41. </Link>
  42. </ItemDefinitionGroup>
  43. <ItemGroup>
  44. <None Include="Testdata\dsp_test.bin" />
  45. <None Include="Testdata\dsp_test.S" />
  46. <None Include="Testdata\hermes.bin" />
  47. <None Include="Testdata\hermes.s" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <ClCompile Include="DSPTool.cpp" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Text Include="CMakeLists.txt" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <ProjectReference Include="$(CoreDir)Common\Common.vcxproj">
  57. <Project>{2e6c348c-c75c-4d94-8d1e-9c1fcbf3efe4}</Project>
  58. </ProjectReference>
  59. <ProjectReference Include="$(CoreDir)Core\Core.vcxproj">
  60. <Project>{e54cf649-140e-4255-81a5-30a673c1fb36}</Project>
  61. </ProjectReference>
  62. </ItemGroup>
  63. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  64. <ImportGroup Label="ExtensionTargets">
  65. </ImportGroup>
  66. <!--Copy the .exe to binary output folder-->
  67. <ItemGroup>
  68. <SourceFiles Include="$(TargetPath)" />
  69. </ItemGroup>
  70. <Target Name="AfterBuild" Inputs="@(SourceFiles)" Outputs="@(SourceFiles -> '$(BinaryOutputDir)%(Filename)%(Extension)')">
  71. <Message Text="Copy: @(SourceFiles) -&gt; $(BinaryOutputDir)" Importance="High" />
  72. <Copy SourceFiles="@(SourceFiles)" DestinationFolder="$(BinaryOutputDir)" />
  73. </Target>
  74. </Project>