Carthage Fails and can't use CocoaPods
*** Checking out SQLiteCipher.swift at "aaf0b5107deb2006e6edd74d9ca3e362be240885" *** xcodebuild output can be found in /var/folders/0m/jz0qf0bd5834_n51gwwp73340000gn/T/carthage-xcodebuild.v4muZl.log *** Skipped building SQLiteCipher.swift due to the error: Dependency "SQLiteCipher.swift" has no shared framework schemes
If you believe this to be an error, please file an issue with the maintainers at https://github.com/stephencelis/SQLiteCipher.swift/issues/new
More Information

And a bit more

The only way I got this to work successfully was to do a Manual Installation. Also NOTE: If you are also using SQLiteCipher you will have to Manually install it, but you will also have to copy the sqlite3.h file from SQLite into your project like show here.

You will then have to update the module.modulemap file in that same directory to this: module SQLite3 [system] { header "sqlite3.h" link "sqlite3" export * }
Then everything works once again.
@jjohnsonvng yeah... still not setting/getting that SQLite3 directory from the SQLite.swift submodule. Don't know how to follow your example code when the code I get from the repo doesn't match ☹️
I downloaded both SQLite and SQLiteCipher with GitHub

I could then see the /usr/include/sqlite3.h file
Regardless I understand your frustration trust me.
Here are the files