MCRO
C++23 utilities for Unreal Engine.
Loading...
Searching...
No Matches
McroISPC.Build.cs
Go to the documentation of this file.
1/** @noop License Comment
2 * @file
3 * @copyright
4 * This Source Code is subject to the terms of the Mozilla Public License, v2.0.
5 * If a copy of the MPL was not distributed with this file You can obtain one at
6 * https://mozilla.org/MPL/2.0/
7 *
8 * @author David Mórász
9 * @date 2025
10 */
11
12using UnrealBuildTool;
13using McroBuild;
14
15/// <summary>
16/// A module containing ISPC utilities.
17/// </summary>
18public class McroISPC : ModuleRules
19{
20 public McroISPC(ReadOnlyTargetRules Target) : base(Target)
21 {
22 bUseUnity = false;
23
24 PublicDependencyModuleNames.AddRange(new[] {
25 "Core",
26 });
27
28
29 PrivateDependencyModuleNames.AddRange(new[] {
30 "CoreUObject",
31 });
32 }
33}
A module containing ISPC utilities.
McroISPC(ReadOnlyTargetRules Target)