Skip to content

Commit

Permalink
build.cs changes for 4.16
Browse files Browse the repository at this point in the history
  • Loading branch information
getnamo committed Jun 6, 2017
1 parent 605775f commit 458e359
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Source/AudioCapture/AudioCapture.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class AudioCapture : ModuleRules
{
public AudioCapture(TargetInfo Target)
public AudioCapture(ReadOnlyTargetRules Target) : base(Target)
{

PublicIncludePaths.AddRange(
Expand Down
2 changes: 1 addition & 1 deletion Source/CoreUtility/CoreUtility.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class CoreUtility : ModuleRules
{
public CoreUtility(TargetInfo Target)
public CoreUtility(ReadOnlyTargetRules Target) : base(Target)
{

PublicIncludePaths.AddRange(
Expand Down
6 changes: 3 additions & 3 deletions Source/TensorFlow/TensorFlow.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ private string TensorflowThirdParty
get { return Path.GetFullPath(Path.Combine(ThirdPartyPath, "Tensorflow")); }
}

public bool LoadLib(TargetInfo Target)
public bool LoadLib(ReadOnlyTargetRules Target)
{
bool isLibrarySupported = false;

Expand All @@ -37,8 +37,8 @@ public bool LoadLib(TargetInfo Target)
}


public TensorFlow(TargetInfo Target)
{
public TensorFlow(ReadOnlyTargetRules Target) : base(Target)
{

PublicIncludePaths.AddRange(
new string[] {
Expand Down

0 comments on commit 458e359

Please sign in to comment.