app.props 914 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ImportGroup Label="PropertySheets" />
  4. <PropertyGroup Label="UserMacros">
  5. <GekkoBinDir>$(SolutionDir)bin\$(PlatformName)\</GekkoBinDir>
  6. </PropertyGroup>
  7. <PropertyGroup>
  8. <OutDir>$(GekkoBinDir)</OutDir>
  9. <TargetName>$(ProjectName)$(Configuration)</TargetName>
  10. </PropertyGroup>
  11. <ItemDefinitionGroup>
  12. <PostBuildEvent>
  13. <Command>xcopy "$(SolutionDir)data" "$(GekkoBinDir)" /Y /S /D
  14. xcopy "$(ExternalsDir)glew-1.6.0\bin$(PlatformArchitecture)\glew32.dll" "$(GekkoBinDir)" /Y /S /D
  15. xcopy "$(ExternalsDir)sdl-2.0.0\lib\$(PlatformName)\SDL.dll" "$(GekkoBinDir)" /Y /S /D</Command>
  16. </PostBuildEvent>
  17. </ItemDefinitionGroup>
  18. <ItemGroup>
  19. <BuildMacro Include="GekkoBinDir">
  20. <Value>$(GekkoBinDir)</Value>
  21. </BuildMacro>
  22. </ItemGroup>
  23. </Project>