Remove vendored libsqlite from the repository

We now link to the system's library.

Windows implementation pending. MSVC build will be broken for a short
while.
This commit is contained in:
2020-12-14 03:42:11 +01:00
parent 94b7864b02
commit 454e0284af
5 changed files with 10 additions and 242703 deletions

View File

@@ -1,16 +1,18 @@
#include "Database.hpp"
#include "Database.hpp"
#include "contrib/bcrypt/BCrypt.hpp"
#include "CNProtocol.hpp"
#include <string>
#include "contrib/JSON.hpp"
#include "contrib/sqlite/sqlite3.h"
#include "CNStructs.hpp"
#include "settings.hpp"
#include "Player.hpp"
#include "CNStructs.hpp"
#include "MissionManager.hpp"
#include "contrib/JSON.hpp"
#include "contrib/bcrypt/BCrypt.hpp"
#include <string>
#include <sqlite3.h>
#if defined(__MINGW32__) && !defined(_GLIBCXX_HAS_GTHREADS)
#include "mingw/mingw.mutex.h"
#else