Cleanup dependency modules code a bit

This commit is contained in:
Wojtek Figat
2026-03-06 12:20:16 +01:00
parent 0fa3472f24
commit 6fcc963cf6
37 changed files with 50 additions and 99 deletions

View File

@@ -1,4 +1,4 @@
// Copyright (c) 2012-2024 Flax Engine. All rights reserved.
// Copyright (c) Wojciech Figat. All rights reserved.
using System;
using System.IO;

View File

@@ -42,4 +42,18 @@ namespace Flax.Build
}
}
}
/// <summary>
/// The engine dependency module.
/// </summary>
/// <seealso cref="Flax.Build.DepsModule" />
public abstract class EngineDepsModule : DepsModule
{
/// <inheritdoc />
public EngineDepsModule()
{
// Merge third-party modules into engine binary
BinaryModuleName = "FlaxEngine";
}
}
}

View File

@@ -1,3 +1,5 @@
// Copyright (c) Wojciech Figat. All rights reserved.
using System;
using System.Collections.Generic;
using System.IO;

View File

@@ -1,7 +1,5 @@
// Copyright (c) Wojciech Figat. All rights reserved.
using System;
using System.Collections.Generic;
using Flax.Build.NativeCpp;
namespace Flax.Build

View File

@@ -1,4 +1,4 @@
// Copyright (c) 2012-2024 Flax Engine. All rights reserved.
// Copyright (c) Wojciech Figat. All rights reserved.
namespace Flax.Build
{