From 0d0d55741d8beb9ee40118c21564d8634a98b766 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sat, 4 Jul 2020 08:59:36 -0700 Subject: [PATCH] Fixed dynlib extension for macOS --- IDE/src/IDEApp.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDE/src/IDEApp.bf b/IDE/src/IDEApp.bf index 7fe23703..c5637735 100644 --- a/IDE/src/IDEApp.bf +++ b/IDE/src/IDEApp.bf @@ -8940,7 +8940,7 @@ namespace IDE else if (project.mGeneralOptions.mTargetType != .CustomBuild) newString.Append(".exe"); case .macOS: - if (project.mGeneralOptions.mTargetType == .BeefLib) + if (project.mGeneralOptions.mTargetType == .BeefDynLib) newString.Append(".dylib"); default: if (project.mGeneralOptions.mTargetType == .BeefDynLib)