mirror of
				https://github.com/Ryujinx/Opentk.git
				synced 2025-11-04 15:05:07 +00:00 
			
		
		
		
	Added option class.
This commit is contained in:
		
							parent
							
								
									e2098e15e5
								
							
						
					
					
						commit
						7d031a81af
					
				
							
								
								
									
										23
									
								
								src/Generator.Rewrite/Options.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								src/Generator.Rewrite/Options.cs
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,23 @@
 | 
			
		|||
using CommandLine;
 | 
			
		||||
 | 
			
		||||
namespace OpenTK.Rewrite
 | 
			
		||||
{
 | 
			
		||||
    public class Options
 | 
			
		||||
    {
 | 
			
		||||
        [Option('d', "debug", DefaultValue = false,
 | 
			
		||||
            HelpText = "Enable calls to GL.GetError(), wrapped around each native call.")]
 | 
			
		||||
        public bool EnableDebugCalls { get; set; }
 | 
			
		||||
 | 
			
		||||
        [Option("dllimport", DefaultValue = false,
 | 
			
		||||
            HelpText = "Force native calls to use DllImport instead of GetProcAddress.")]
 | 
			
		||||
        public bool UseDLLImport { get; set; }
 | 
			
		||||
 | 
			
		||||
        [Option('i', "assembly", Required = true,
 | 
			
		||||
            HelpText = "The path to the target assembly that should be rewritten.")]
 | 
			
		||||
        public string TargetAssembly { get; set; }
 | 
			
		||||
 | 
			
		||||
        [Option('k', "signing-key",
 | 
			
		||||
            HelpText = "The path to the strong name key which should be used to sign or resign the assembly.")]
 | 
			
		||||
        public string StrongNameKey { get; set; }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
		Reference in a new issue