mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
Fixed GUI Application setting on non-Windows platform
This commit is contained in:
parent
1f2632786c
commit
2cd37ef6c6
1 changed files with 3 additions and 2 deletions
|
@ -282,8 +282,9 @@ namespace IDE
|
|||
linkLine.Append(" ");
|
||||
}*/
|
||||
|
||||
if ((project.mGeneralOptions.mTargetType == Project.TargetType.BeefGUIApplication) ||
|
||||
(project.mGeneralOptions.mTargetType == Project.TargetType.C_GUIApplication))
|
||||
if ((mPlatformType == .Windows) &&
|
||||
((project.mGeneralOptions.mTargetType == Project.TargetType.BeefGUIApplication) ||
|
||||
(project.mGeneralOptions.mTargetType == Project.TargetType.C_GUIApplication)))
|
||||
{
|
||||
linkLine.Append("-mwindows ");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue