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

Null check for options for dependency on disabled project

This commit is contained in:
Brian Fiete 2024-08-12 14:10:15 -04:00
parent ecb68a43c0
commit 266b80d332

View file

@ -1319,6 +1319,9 @@ namespace IDE
let workspaceOptions = gApp.GetCurWorkspaceOptions();
let options = gApp.GetCurProjectOptions(checkProject);
if (options == null)
continue;
gApp.[Friend]GetTargetPaths(checkProject, gApp.mPlatformName, workspaceOptions, options, targetPaths);
if ((checkProject.mGeneralOptions.mTargetType == .BeefLib) && (options.mBuildOptions.mBuildKind != .DynamicLib))