mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-28 08:31:25 +00:00 
			
		
		
		
	 43ed389a3f
			
		
	
	43ed389a3f
	
	
	
		
			
			* llama : use cmake for swift build
* swift : <> -> ""
* ci : remove make
* ci : disable ios build
* Revert "swift : <> -> """
This reverts commit d39ffd9556.
* ci : try fix ios build
* ci : cont
* ci : cont
---------
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
		
	
		
			
				
	
	
		
			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"),
 | |
|     ]
 | |
| )
 |