Skip to content
Snippets Groups Projects
Select Git revision
  • c3cb486cdaecec5e37cb6df92e6f1f85ff7aef5b
  • master default protected
  • develop
  • semantic
  • auto-inflate
  • feature/aps
  • legacy protected
  • 10.0.0
  • 9.3.8
  • 9.3.7
  • 9.3.6
  • 9.3.5
  • 9.3.4
  • 9.3.3
  • 9.3.2
  • 9.3.1
  • 9.3.0
  • 9.2.0
  • 9.1.2
  • 9.1.1
  • 9.1.0
  • 9.0.1
  • 9.0.0
  • 8.2.5
  • 8.2.4
  • 8.2.3
  • 8.2.2
27 results

setup.py

Blame
  • RWTHVRQuickStart.Build.cs 1.08 KiB
    // Copyright Epic Games, Inc. All Rights Reserved.
    
    using UnrealBuildTool;
    
    public class RWTHVRQuickStart : ModuleRules
    {
    	public RWTHVRQuickStart(ReadOnlyTargetRules Target) : base(Target)
    	{
    		PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
    		
    		PublicIncludePaths.AddRange(
    			new string[] {
    				// ... add public include paths required here ...
    			}
    			);
    				
    		
    		PrivateIncludePaths.AddRange(
    			new string[] {
    				// ... add other private include paths required here ...
    			}
    			);
    			
    		
    		PublicDependencyModuleNames.AddRange(
    			new string[]
    			{
    				"Core", "Engine", "Engine",
    				// ... add other public dependencies that you statically link with here ...
    			}
    			);
    			
    		
    		PrivateDependencyModuleNames.AddRange(
    			new string[]
    			{
    				"CoreUObject",
    				"Engine",
    				"Slate",
    				"SlateCore", "RWTHVRToolkit", "RWTHVRToolkit",
    				// ... add private dependencies that you statically link with here ...	
    			}
    			);
    		
    		
    		DynamicallyLoadedModuleNames.AddRange(
    			new string[]
    			{
    				// ... add any modules that your module loads dynamically here ...
    			}
    			);
    	}
    }