Automatically copy LICENSE and LICENSE.lesser to build directory for easier releases.

This commit is contained in:
Michael Dirks
2015-06-06 21:20:52 +02:00
parent 9c80d60c1e
commit ab4b03b2c2
2 changed files with 84 additions and 4 deletions
+27 -1
View File
@@ -137,7 +137,7 @@
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemGroup> <ItemGroup>
<ClCompile Include="dllmain.cpp" /> <ClCompile Include="dllmain.cpp" />
<ClCompile Include="Helper.cpp" /> <ClCompile Include="Helpers\Helper.cpp" />
<ClCompile Include="Helpers\Double.cpp" /> <ClCompile Include="Helpers\Double.cpp" />
<ClCompile Include="Helpers\Int64.cpp" /> <ClCompile Include="Helpers\Int64.cpp" />
<ClCompile Include="Libraries\BlitzPointer.cpp" /> <ClCompile Include="Libraries\BlitzPointer.cpp" />
@@ -146,13 +146,39 @@
<ClCompile Include="Wrapper\SteamApps.cpp" /> <ClCompile Include="Wrapper\SteamApps.cpp" />
<ClCompile Include="Wrapper\SteamClient.cpp" /> <ClCompile Include="Wrapper\SteamClient.cpp" />
<ClCompile Include="Wrapper\SteamController.cpp" /> <ClCompile Include="Wrapper\SteamController.cpp" />
<ClCompile Include="Wrapper\SteamFriends.cpp" />
<ClCompile Include="Wrapper\SteamGameServer.cpp" />
<ClCompile Include="Wrapper\SteamGameServerStats.cpp" />
<ClCompile Include="Wrapper\SteamHTMLSurface.cpp" />
<ClCompile Include="Wrapper\SteamHTTP.cpp" />
<ClCompile Include="Wrapper\SteamInventory.cpp" />
<ClCompile Include="Wrapper\SteamMatchmaking.cpp" />
<ClCompile Include="Wrapper\SteamMatchmakingServer.cpp" />
<ClCompile Include="Wrapper\SteamMusic.cpp" />
<ClCompile Include="Wrapper\SteamMusicRemote.cpp" />
<ClCompile Include="Wrapper\SteamNetworking.cpp" />
<ClCompile Include="Wrapper\SteamRemoteStorage.cpp" />
<ClCompile Include="Wrapper\SteamScreenshots.cpp" />
<ClCompile Include="Wrapper\SteamUGC.cpp" />
<ClCompile Include="Wrapper\SteamUnifiedMessages.cpp" />
<ClCompile Include="Wrapper\SteamUser.cpp" /> <ClCompile Include="Wrapper\SteamUser.cpp" />
<ClCompile Include="Wrapper\SteamUserStats.cpp" />
<ClCompile Include="Wrapper\SteamUtils.cpp" />
<ClCompile Include="Wrapper\SteamVideo.cpp" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="dllmain.h" /> <ClInclude Include="dllmain.h" />
<ClInclude Include="Libraries\BlitzPointer.h" /> <ClInclude Include="Libraries\BlitzPointer.h" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Include="LICENSE">
<Link>LICENSE</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="LICENSE.lesser">
<Link>LICENSE.lesser</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Blitz\BlitzSteam.bb"> <None Include="Blitz\BlitzSteam.bb">
<Link>BlitzSteam.bb</Link> <Link>BlitzSteam.bb</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+57 -3
View File
@@ -49,12 +49,66 @@
<ClCompile Include="Helpers\Int64.cpp"> <ClCompile Include="Helpers\Int64.cpp">
<Filter>Source Files\Helpers</Filter> <Filter>Source Files\Helpers</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="Helper.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="Helpers\Double.cpp"> <ClCompile Include="Helpers\Double.cpp">
<Filter>Source Files\Helpers</Filter> <Filter>Source Files\Helpers</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="Wrapper\SteamFriends.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamGameServer.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamUtils.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamMatchmaking.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamMatchmakingServer.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamUserStats.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamNetworking.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamRemoteStorage.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamScreenshots.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamMusic.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamMusicRemote.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamGameServerStats.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamHTTP.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamUnifiedMessages.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamUGC.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamHTMLSurface.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamInventory.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Wrapper\SteamVideo.cpp">
<Filter>Source Files\Wrapper</Filter>
</ClCompile>
<ClCompile Include="Helpers\Helper.cpp">
<Filter>Source Files\Helpers</Filter>
</ClCompile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="dllmain.h"> <ClInclude Include="dllmain.h">