Skip to content

Commit

Permalink
NOTE on macOS FindSQLite3 find an unrelated sqlite3.h from Mono.frame…
Browse files Browse the repository at this point in the history
…work that doesn't match the actual package version!
  • Loading branch information
SRombauts committed Aug 18, 2024
1 parent d015229 commit 8008490
Show file tree
Hide file tree
Showing 2 changed files with 645 additions and 641 deletions.
2 changes: 1 addition & 1 deletion examples/example1/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ int main()
{
// Using SQLITE_VERSION would require #include <sqlite3.h> which we want to avoid: use SQLite::VERSION if possible.
// std::cout << "SQlite3 version " << SQLITE_VERSION << std::endl;
std::cout << "SQlite3 version " << SQLite::VERSION << " (" << SQLite::getLibVersion() << ")" << std::endl;
std::cout << "SQlite3 compile time header version " << SQLite::VERSION << " (vs dynamic lib version " << SQLite::getLibVersion() << ")" << std::endl;
std::cout << "SQliteC++ version " << SQLITECPP_VERSION << std::endl;

////////////////////////////////////////////////////////////////////////////
Expand Down
Loading

0 comments on commit 8008490

Please sign in to comment.