You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#JIRA UCS-1831 #fyi luke.bermingham, marco.anastasi #rb aidan.possemiers [CL 17920208 by Nick Pace in ue5-main branch]
14 lines
335 B
C#
14 lines
335 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
using UnrealBuildTool;
|
|
|
|
public class CUDAHeader : ModuleRules
|
|
{
|
|
public CUDAHeader(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
Type = ModuleType.External;
|
|
|
|
string cudaPath = Target.UEThirdPartySourceDirectory + "NVIDIA/CUDA";
|
|
PublicSystemIncludePaths.Add(cudaPath);
|
|
}
|
|
}
|