Use MSBuild to create empty dirs in output

This commit is contained in:
James Groom 2024-04-04 00:17:32 +00:00 committed by GitHub
parent b427e7c417
commit dd9e4178d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 1 additions and 1 deletions

View File

View File

@ -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"

View File

@ -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>