1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Intermediate project type fix for MSLink

This commit is contained in:
Brian Fiete 2022-05-02 08:58:03 -07:00
parent 772355cb40
commit b095f5b0d3

View file

@ -933,6 +933,9 @@ namespace IDE
bool QueueProjectMSLink(Project project, String targetPath, String configName, Workspace.Options workspaceOptions, Project.Options options, String objectsArg)
{
if (options.mBuildOptions.mBuildKind == .Intermediate)
return true;
bool is64Bit = mPtrSize == 8;
String llvmDir = scope String(IDEApp.sApp.mInstallDir);