Use MSBuild to create empty dirs in output
This commit is contained in:
parent
b427e7c417
commit
dd9e4178d6
|
@ -8,7 +8,6 @@ find "output" -type f \( -wholename "output/EmuHawk.exe" -o -wholename "output/D
|
|||
-not -wholename "output/dll/*.xml" -not -wholename "output/dll/libsneshawk-64*.exe" -not -wholename "output/dll/gpgx.elf" -not -wholename "output/dll/miniclient.*" \
|
||||
-exec install -D -m644 "{}" "packaged_{}" \;
|
||||
cd "$targetDir"
|
||||
mkdir "Firmware"
|
||||
if [ "$1" = "windows-x64" ]; then
|
||||
rm -f "EmuHawkMono.sh"
|
||||
cd "dll"
|
||||
|
|
|
@ -21,5 +21,6 @@
|
|||
</ItemGroup>
|
||||
<Move SourceFiles="@(NotExecFilesFromExecProj)" DestinationFolder="$(OutputPath)dll/" />
|
||||
<Move SourceFiles="@(ExecFilesFromExecProj)" DestinationFiles="@(ExecFilesFromExecProj->Replace('BizHawk.Client.', ''))" />
|
||||
<MakeDir Directories="$(OutputPath)ExternalTools;$(OutputPath)Firmware;$(OutputPath)Tools" />
|
||||
</Target>
|
||||
</Project>
|
||||
|
|
Loading…
Reference in New Issue