mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00

Fixed working dir for 'launch' Fixed attaching to process - stack trace wasn't updating properly Fixed more custom compile stuff, and BeefySysLib bin destination Fixed linking issues related to Bfp* and Bp* exports in both BeefRT and BeefySysLib Fixed a crash with conditional breakpoints Fixed release mode IDE issues (related to hot swap breakpoints) Fixed hotswapping type data with LLVM builds Fixed 'Pause' state processing Running_ToTempBreakpoint for ScriptManager Fixed Win32 step out when there's an ESP adjustment at the return site Made step-out skip over "unimportant" instructions at return site
41 lines
1 KiB
TOML
41 lines
1 KiB
TOML
FileVersion = 1
|
|
|
|
[Project]
|
|
Name = "Beefy2D"
|
|
DefaultNamespace = ""
|
|
|
|
[Configs.Debug.Win32]
|
|
OtherLinkFlags = ""
|
|
PreprocessorMacros = ["DEBUG", "BF32"]
|
|
OptimizationLevel = "O0"
|
|
|
|
[Configs.Debug.Win64]
|
|
OtherLinkFlags = "$(LinkFlags) $(ProjectDir)/dist/BeefySysLib64_d.lib"
|
|
CLibType = "Static"
|
|
BeefLibType = "Static"
|
|
PostBuildCmds = ["CopyToDependents(\"$(ProjectDir)/dist/BeefySysLib64_d.dll\")", "CopyToDependents(\"$(ProjectDir)/dist/BeefySysLib64_d.pdb\")"]
|
|
|
|
[Configs.Release.Win32]
|
|
OtherLinkFlags = ""
|
|
PreprocessorMacros = ["RELEASE", "BF32"]
|
|
OptimizationLevel = "O0"
|
|
|
|
[Configs.Release.Win64]
|
|
OtherLinkFlags = "$(LinkFlags) $(ProjectDir)/dist/BeefySysLib64.lib"
|
|
PostBuildCmds = ["CopyToDependents(\"$(ProjectDir)/dist/BeefySysLib64.dll\")", "CopyToDependents(\"$(ProjectDir)/dist/BeefySysLib64.pdb\")"]
|
|
|
|
[Configs.Paranoid.Win32]
|
|
CLibType = "Static"
|
|
BeefLibType = "Static"
|
|
|
|
[Configs.Paranoid.Win64]
|
|
CLibType = "Static"
|
|
BeefLibType = "Static"
|
|
|
|
[Configs.Test.Win32]
|
|
CLibType = "Static"
|
|
BeefLibType = "Static"
|
|
|
|
[Configs.Test.Win64]
|
|
CLibType = "Static"
|
|
BeefLibType = "Static"
|