mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +00:00
Windows/VS projects: add post build event to copy dll files to build target directory, to avoid having to do it by hand
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1176 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
c972307236
commit
2e792e917d
2 changed files with 8 additions and 0 deletions
|
@ -89,6 +89,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
CommandLine="copy "$(SolutionDir)\..\codecs\x86\*.dll" "$(TargetDir)"
copy "$(SolutionDir)\..\SDL2\lib\*.dll" "$(TargetDir)""
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
|
@ -164,6 +165,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
CommandLine="copy "$(SolutionDir)\..\codecs\x86\*.dll" "$(TargetDir)"
copy "$(SolutionDir)\..\SDL2\lib\*.dll" "$(TargetDir)""
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
|
@ -238,6 +240,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
CommandLine="copy "$(SolutionDir)\..\codecs\x64\*.dll" "$(TargetDir)"
copy "$(SolutionDir)\..\SDL2\lib64\*.dll" "$(TargetDir)""
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
|
@ -314,6 +317,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
CommandLine="copy "$(SolutionDir)\..\codecs\x64\*.dll" "$(TargetDir)"
copy "$(SolutionDir)\..\SDL2\lib64\*.dll" "$(TargetDir)""
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
|
|
|
@ -89,6 +89,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
CommandLine="copy "$(SolutionDir)\..\codecs\x86\*.dll" "$(TargetDir)"
copy "$(SolutionDir)\..\SDL\lib\*.dll" "$(TargetDir)""
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
|
@ -164,6 +165,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
CommandLine="copy "$(SolutionDir)\..\codecs\x86\*.dll" "$(TargetDir)"
copy "$(SolutionDir)\..\SDL\lib\*.dll" "$(TargetDir)""
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
|
@ -238,6 +240,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
CommandLine="copy "$(SolutionDir)\..\codecs\x64\*.dll" "$(TargetDir)"
copy "$(SolutionDir)\..\SDL\lib64\*.dll" "$(TargetDir)""
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
|
@ -314,6 +317,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
CommandLine="copy "$(SolutionDir)\..\codecs\x64\*.dll" "$(TargetDir)"
copy "$(SolutionDir)\..\SDL\lib64\*.dll" "$(TargetDir)""
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
|
|
Loading…
Reference in a new issue