mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-04 09:32:00 +00:00 
			
		
		
		
	* 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"),
 | 
						|
    ]
 | 
						|
)
 |