forked from lobo/lambda-zig
		
	add build.zig.zon
This commit is contained in:
		
							parent
							
								
									5b2a4936a2
								
							
						
					
					
						commit
						e0307704e1
					
				
					 1 changed files with 26 additions and 0 deletions
				
			
		
							
								
								
									
										26
									
								
								build.zig.zon
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								build.zig.zon
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,26 @@ | |||
| .{ | ||||
|     .name = "lambda-zig", | ||||
|     // This is a [Semantic Version](https://semver.org/). | ||||
|     // In a future version of Zig it will be used for package deduplication. | ||||
|     .version = "0.0.0", | ||||
| 
 | ||||
|     // This field is optional. | ||||
|     // This is currently advisory only; Zig does not yet do anything | ||||
|     // with this value. | ||||
|     .minimum_zig_version = "0.12.0", | ||||
| 
 | ||||
|     // Specifies the set of files and directories that are included in this package. | ||||
|     // Only files and directories listed here are included in the `hash` that | ||||
|     // is computed for this package. | ||||
|     // Paths are relative to the build root. Use the empty string (`""`) to refer to | ||||
|     // the build root itself. | ||||
|     // A directory listed here means that all files within, recursively, are included. | ||||
|     .paths = .{ | ||||
|         "build.zig", | ||||
|         "build.zig.zon", | ||||
|         "lambdabuild.zig", | ||||
|         "src", | ||||
|         "LICENSE", | ||||
|         "README.md", | ||||
|     }, | ||||
| } | ||||
		Loading…
	
	Add table
		
		Reference in a new issue