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

Initial checkin

This commit is contained in:
Brian Fiete 2019-08-23 11:56:54 -07:00
parent c74712dad9
commit 078564ac9e
3242 changed files with 1616395 additions and 0 deletions

View file

@ -0,0 +1,55 @@
FileVersion = 1
Dependencies = {minlib = "*"}
[Project]
Name = "LibB"
TargetType = "BeefLib"
DefaultNamespace = ""
[Configs.Debug.Win32]
OtherLinkFlags = "-lComdlg32"
CLibType = "Dynamic"
[Configs.Debug.Win64]
OtherLinkFlags = "-lComdlg32"
CLibType = "Static"
[Configs.Debug.WinFart]
OtherLinkFlags = ""
CLibType = "Static"
BeefLibType = "Static"
[Configs.Release.Win32]
OtherLinkFlags = "-lComdlg32"
CLibType = "Dynamic"
OptimizationLevel = "O2"
[Configs.Release.Win64]
OtherLinkFlags = "-lComdlg32"
OptimizationLevel = "O2"
[Configs.Release.WinFart]
OtherLinkFlags = ""
[Configs.Paranoid.Win32]
CLibType = "Static"
[Configs.Paranoid.Win64]
CLibType = "Static"
[Configs.Paranoid.WinFart]
OtherLinkFlags = ""
CLibType = "Static"
BeefLibType = "Static"
[Configs.Test.Win32]
CLibType = "Static"
[Configs.Test.Win64]
CLibType = "Static"
[Configs.Test.WinFart]
BuildKind = "Normal"
OtherLinkFlags = ""
CLibType = "Static"
BeefLibType = "Static"

View file