mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-12 05:14:10 +02:00
Fixed CopyToDependents for DLLs
This commit is contained in:
parent
e79a3755fd
commit
63792924e0
1 changed files with 3 additions and 2 deletions
|
@ -1310,8 +1310,6 @@ namespace IDE
|
||||||
|
|
||||||
for (let checkProject in gApp.mWorkspace.mProjects)
|
for (let checkProject in gApp.mWorkspace.mProjects)
|
||||||
{
|
{
|
||||||
if (checkProject.mGeneralOptions.mTargetType == .BeefLib)
|
|
||||||
continue;
|
|
||||||
if (checkProject.HasDependency(depProject.mProjectName))
|
if (checkProject.HasDependency(depProject.mProjectName))
|
||||||
{
|
{
|
||||||
List<String> targetPaths = scope .();
|
List<String> targetPaths = scope .();
|
||||||
|
@ -1321,6 +1319,9 @@ namespace IDE
|
||||||
let options = gApp.GetCurProjectOptions(checkProject);
|
let options = gApp.GetCurProjectOptions(checkProject);
|
||||||
gApp.[Friend]GetTargetPaths(checkProject, gApp.mPlatformName, workspaceOptions, options, targetPaths);
|
gApp.[Friend]GetTargetPaths(checkProject, gApp.mPlatformName, workspaceOptions, options, targetPaths);
|
||||||
|
|
||||||
|
if ((checkProject.mGeneralOptions.mTargetType == .BeefLib) && (options.mBuildOptions.mBuildKind != .DynamicLib))
|
||||||
|
continue;
|
||||||
|
|
||||||
if (!targetPaths.IsEmpty)
|
if (!targetPaths.IsEmpty)
|
||||||
{
|
{
|
||||||
String targetDirPath = scope .();
|
String targetDirPath = scope .();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue