mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 14:24:10 +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(" ");
|
linkLine.Append(" ");
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
if ((project.mGeneralOptions.mTargetType == Project.TargetType.BeefGUIApplication) ||
|
if ((mPlatformType == .Windows) &&
|
||||||
(project.mGeneralOptions.mTargetType == Project.TargetType.C_GUIApplication))
|
((project.mGeneralOptions.mTargetType == Project.TargetType.BeefGUIApplication) ||
|
||||||
|
(project.mGeneralOptions.mTargetType == Project.TargetType.C_GUIApplication)))
|
||||||
{
|
{
|
||||||
linkLine.Append("-mwindows ");
|
linkLine.Append("-mwindows ");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue