ccgus / fmdb

A Cocoa / Objective-C wrapper around SQLite
Other
13.84k stars 2.77k forks source link

Standalone with Carthage? #752

Open jlippold opened 5 years ago

jlippold commented 5 years ago

Is there a way to use the standalone build with Carthage? I see instruction for CocoaPods but not carthage.

Thanks for the help

robertmryan commented 5 years ago

Aren’t there Carthage instructions here?

jlippold commented 5 years ago

Yea, but no instructions on how to use the standalone build with carthage. The docs have this section for cocoapods

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'MyApp' do
    # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
    use_frameworks!

    # Pods for MyApp2

    pod 'FMDB'
    # pod 'FMDB/FTS'   # FMDB with FTS
    # pod 'FMDB/standalone'   # FMDB with latest SQLite amalgamation source
    # pod 'FMDB/standalone/FTS'   # FMDB with latest SQLite amalgamation source and FTS
    # pod 'FMDB/SQLCipher'   # FMDB with SQLCipher
end

but no carthage equivalent for pod 'FMDB/standalone'