How do I compile sqlite with ICU (International Components for Unicode) as a project in my iPhone app's workspace?
I've compiled the sqlite amalgamation before, however I'm not sure what files I should download, and what scripts need to be added to xcode - surely I'm not the first to need this.
Ideally I'm looking for step-by-step instructions.
I've done this with 5.2.1 on Linux (GCC compiler) using the ICU source code from here: http://site.icu-project.org/download/52. All of the cpp and c files were added to the project. SQLite 3.8.4.1 amalgamated was also in the project. The trick is the defines:
ICU needs: U_COMMON_IMPLEMENTATION U_STATIC_IMPLEMENTATION U_I18N_IMPLEMENTATION HAVE_CONFIG_H HAVE_INTTYPES_H
SQLite needs: SQLITE_OMIT_LOAD_EXTENSION
It's not the easiest thing, but a lot easier than older versions of ICU.
Granted, Linux is not the iPhone, but this may help a little.