Skip to content

Instantly share code, notes, and snippets.

@EddyLuten
Created June 1, 2014 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EddyLuten/fccd008e1947cecfca14 to your computer and use it in GitHub Desktop.
Save EddyLuten/fccd008e1947cecfca14 to your computer and use it in GitHub Desktop.
Build Rules
// Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class SNIP : ModuleRules
{
public SNIP(TargetInfo Target)
{
PublicIncludePaths.AddRange(
new string[] {
// ... add public include paths required here ...
}
);
PrivateIncludePaths.AddRange(
new string[] {
"SNIP/Private",
// ... add other private include paths required here ...
}
);
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
// ... add other public dependencies that you statically link with here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Engine",
// ... add private dependencies that you statically link with here ...
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
// ... add any modules that your module loads dynamically here ...
}
);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment