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:
parent
f6e8c64a20
commit
bb0678c839
1 changed files with 1 additions and 1 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue