BradLarson / GPUImage3

GPUImage 3 is a BSD-licensed Swift framework for GPU-accelerated video and image processing using Metal.
BSD 3-Clause "New" or "Revised" License
2.68k stars 331 forks source link

Swift Package Manager #48

Closed GiacomoLeopizzi closed 4 months ago

GiacomoLeopizzi commented 4 years ago

Using the framework by the Swift Package Manager result in a build error on Xcode 11 (but probably also on Xcode 10.2). The reason is because in the Package.swift, line 21 there is swiftLanguageVersions: [.v4] While the used version of swift is 4.2. To support build should be changed in swiftLanguageVersions: [.v4_2, .v5]

ggua5470 commented 4 years ago

I also did a quick test of using GPUImage3 with Swift Package Manager. Some compile errors pop up related to swift version. So I guess @GiacomoLeopizzi is right.

BradLarson commented 4 months ago

Should be fixed as of #133