-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
25 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
Binaries/* | ||
Config/* | ||
Intermediate/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[FilterPlugin] | ||
; This section lists additional files which will be packaged along with your plugin. Paths should be listed relative to the root plugin directory, and | ||
; may include "...", "*", and "?" wildcards to match directories, files, and individual characters respectively. | ||
; | ||
; Examples: | ||
; /README.txt | ||
; /Extras/... | ||
; /Binaries/ThirdParty/*.dll | ||
LICENSE | ||
README.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 10 additions & 16 deletions
26
Source/QtCreatorSourceCodeAccess/QtCreatorSourceCodeAccess.Build.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,24 @@ | ||
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved. | ||
|
||
using UnrealBuildTool; | ||
|
||
public class QtCreatorSourceCodeAccess : ModuleRules | ||
namespace UnrealBuildTool.Rules | ||
{ | ||
public QtCreatorSourceCodeAccess(TargetInfo Target) | ||
public class QtCreatorSourceCodeAccess : ModuleRules | ||
{ | ||
PrivateIncludePaths.AddRange( | ||
new string[] { | ||
"QtCreatorSourceCodeAccess/Private" | ||
} | ||
); | ||
|
||
|
||
PrivateDependencyModuleNames.AddRange( | ||
public QtCreatorSourceCodeAccess(ReadOnlyTargetRules Target) : base(Target) | ||
{ | ||
PrivateDependencyModuleNames.AddRange( | ||
new string[] | ||
{ | ||
"Core", | ||
"SourceCodeAccess", | ||
"DesktopPlatform", | ||
} | ||
); | ||
); | ||
|
||
if (UEBuildConfiguration.bBuildEditor) | ||
{ | ||
PrivateDependencyModuleNames.Add("HotReload"); | ||
if (UEBuildConfiguration.bBuildEditor) | ||
{ | ||
PrivateDependencyModuleNames.Add("HotReload"); | ||
} | ||
} | ||
} | ||
} |