mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-30 08:42:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			364 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			364 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
| // swift-tools-version:5.5
 | |
| 
 | |
| import PackageDescription
 | |
| 
 | |
| let package = Package(
 | |
|     name: "llama",
 | |
|     platforms: [
 | |
|         .macOS(.v12),
 | |
|         .iOS(.v14),
 | |
|         .watchOS(.v4),
 | |
|         .tvOS(.v14)
 | |
|     ],
 | |
|     products: [
 | |
|         .library(name: "llama", targets: ["llama"]),
 | |
|     ],
 | |
|     targets: [
 | |
|         .systemLibrary(name: "llama", pkgConfig: "llama"),
 | |
|     ]
 | |
| )
 | 
