1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 23:36:00 +02:00

[Fix] Beefy2D missing quotes in build config

Missing quotes in the Beefy2D project configuration causes (only) Release builds to fail, if 'BeefySysLib64.lib' is located in a path with spaces in it.
This commit is contained in:
Hiroko 2022-01-24 19:29:45 +01:00 committed by GitHub
parent f6e8c64a20
commit bb0678c839
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ OtherLinkFlags = ""
PreprocessorMacros = ["RELEASE", "BF32"]
[Configs.Release.Win64]
OtherLinkFlags = "$(LinkFlags) $(ProjectDir)/dist/BeefySysLib64.lib"
OtherLinkFlags = "$(LinkFlags) \"$(ProjectDir)/dist/BeefySysLib64.lib\""
PostBuildCmds = ["CopyToDependents(\"$(ProjectDir)/dist/BeefySysLib64.dll\")", "CopyToDependents(\"$(ProjectDir)/dist/BeefySysLib64.pdb\")"]
[Configs.Release.Linux64]