Skip to content

Commit 0f8d912

Browse files
committed
NOTE on macOS FindSQLite3 find an unrelated sqlite3.h from Mono.framework that doesn't match the actual package version!
1 parent 2644c31 commit 0f8d912

File tree

2 files changed

+645
-641
lines changed

2 files changed

+645
-641
lines changed

examples/example1/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ int main()
8787
{
8888
// Using SQLITE_VERSION would require #include <sqlite3.h> which we want to avoid: use SQLite::VERSION if possible.
8989
// std::cout << "SQlite3 version " << SQLITE_VERSION << std::endl;
90-
std::cout << "SQlite3 version " << SQLite::VERSION << " (" << SQLite::getLibVersion() << ")" << std::endl;
90+
std::cout << "SQlite3 compile time header version " << SQLite::VERSION << " (vs dynamic lib version " << SQLite::getLibVersion() << ")" << std::endl;
9191
std::cout << "SQliteC++ version " << SQLITECPP_VERSION << std::endl;
9292

9393
////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)