Build Postbox for macOS

This commit is contained in:
Peter
2019-08-16 16:23:37 +03:00
parent cb48f2b224
commit 23682c7e34
17 changed files with 1019 additions and 2 deletions

View File

@@ -34,7 +34,11 @@
#define SQLITE3_H
#include <stdarg.h> /* Needed for the definition of va_list */
#if TARGET_OS_IOS
#include <sqlcipher/sqlcipher_config.h>
#else
#include <sqlciphermac/sqlcipher_config.h>
#endif
/*
** Make sure we can call this stuff from C++.

View File

@@ -17,7 +17,12 @@
*/
#ifndef SQLITE3EXT_H
#define SQLITE3EXT_H
#if TARGET_OS_IOS
#include <sqlcipher/sqlite3.h>
#else
#include <sqlciphermac/sqlite3.h>
#endif
/*
** The following structure holds pointers to all of the SQLite API