mobile: build contrib libs into app lib (important for dependencies)

This commit is contained in:
pls.153 2022-03-14 16:45:17 +01:00
parent b89234e257
commit 14b5eff7ea
6 changed files with 29 additions and 17 deletions

View file

@ -22,7 +22,6 @@
#endif
#ifdef INI_ECL_CONTRIB
// for iOS (static lib)
extern "C" {
void init_lib_DEFLATE(cl_object);
void init_lib_ECL_CDB(cl_object);
@ -119,7 +118,7 @@ int main(int argc, char* argv[]) {
}
#ifdef INI_ECL_CONTRIB
// for iOS; ASDF is loaded on demand (slow)
// ASDF is loaded on demand (slow)
ecl_init_module(NULL, init_lib_DEFLATE);
ecl_init_module(NULL, init_lib_ECL_CDB);
ecl_init_module(NULL, init_lib_ECL_HELP);