Skip to content

Commit 9f5df17

Browse files
committed
Merge branch 'refs/heads/4.16-changes'
2 parents 605775f + 458e359 commit 9f5df17

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Source/AudioCapture/AudioCapture.Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public class AudioCapture : ModuleRules
44
{
5-
public AudioCapture(TargetInfo Target)
5+
public AudioCapture(ReadOnlyTargetRules Target) : base(Target)
66
{
77

88
PublicIncludePaths.AddRange(

Source/CoreUtility/CoreUtility.Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public class CoreUtility : ModuleRules
44
{
5-
public CoreUtility(TargetInfo Target)
5+
public CoreUtility(ReadOnlyTargetRules Target) : base(Target)
66
{
77

88
PublicIncludePaths.AddRange(

Source/TensorFlow/TensorFlow.Build.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ private string TensorflowThirdParty
2121
get { return Path.GetFullPath(Path.Combine(ThirdPartyPath, "Tensorflow")); }
2222
}
2323

24-
public bool LoadLib(TargetInfo Target)
24+
public bool LoadLib(ReadOnlyTargetRules Target)
2525
{
2626
bool isLibrarySupported = false;
2727

@@ -37,8 +37,8 @@ public bool LoadLib(TargetInfo Target)
3737
}
3838

3939

40-
public TensorFlow(TargetInfo Target)
41-
{
40+
public TensorFlow(ReadOnlyTargetRules Target) : base(Target)
41+
{
4242

4343
PublicIncludePaths.AddRange(
4444
new string[] {

0 commit comments

Comments
 (0)