On Wed, 2010-12-29 at 15:27 -0800, John Deal wrote: > Hello all, > > I am working on integrating Soci into Mira Groupware > (http://www.miragroupware.org) and want to start with the SQLite3 backend > (which looks like will be our default) with MySQL second. I pulled the > soci-5103f0f git files expanded, etc. I have SQLite3 installed with the > specified libsqlite3 library and can execute sqlite3. From the src directory > on a Ubuntu 10.04 system here is my cmake command: > > cmake -G "Unix Makefiles" -DWITH_BOOST=ON -DWITH_ORACLE=OFF -DWITH_MYSQL=ON > -DWITH_ODBC=OFF -DWITH_POSTGRESQL=OFF WITH_SQLITE3=ON -DSOCI_TESTS=OFF > -DSOCI_EMPTY_ > TEST_CONNSTR=OFF ./ > > I get the following error:
Hi have you installed the libsqlite3-dev package? if yes soci should find sqlite3 by default on ubuntu. if you have installed it in a non-standard location you can tell cmake where by doing this: cmake ../src/ -DSQLITE3_INCLUDE_DIR=/path/to/include/dir -DSQLITE3_LIBRARY=/path/to/library/libsqlite3.so.0 Best Regards, Julian Taylor
signature.asc
Description: This is a digitally signed message part
------------------------------------------------------------------------------ Learn how Oracle Real Application Clusters (RAC) One Node allows customers to consolidate database storage, standardize their database environment, and, should the need arise, upgrade to a full multi-node Oracle RAC database without downtime or disruption http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________ Soci-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/soci-users
