fix
This commit is contained in:
parent
675707b46c
commit
4800db00d9
@ -26,7 +26,7 @@ PROJECT_CLEANUP[LIBSODIUM]="3rd_party/libsodium-*:3rd_party/libsodium*"
|
||||
PROJECT_CLEANUP[OPENSSL]="3rd_party/openssl-*"
|
||||
PROJECT_CLEANUP[PUGIXML]="3rd_party/pugixml-*"
|
||||
PROJECT_CLEANUP[SPDLOG]="3rd_party/spdlog-*"
|
||||
PROJECT_CLEANUP[SQLITE]="3rd_party/sqlite*:include/utils/db:src/utils/db"
|
||||
PROJECT_CLEANUP[SQLITE]="3rd_party/sqlite*"
|
||||
PROJECT_CLEANUP[STDUUID]="3rd_party/stduuid-*"
|
||||
PROJECT_CLEANUP[TESTING]="3rd_party/googletest-*"
|
||||
PROJECT_CLEANUP[WINFSP]="3rd_party/winfsp-*"
|
||||
|
@ -26,17 +26,34 @@
|
||||
|
||||
#include "utils/base64.hpp"
|
||||
#include "utils/collection.hpp"
|
||||
#if defined(_WIN32)
|
||||
#include "utils/com_init_wrapper.hpp"
|
||||
#endif // defined(_WIN32)
|
||||
#include "utils/common.hpp"
|
||||
#if defined(PROJECT_ENABLE_SQLITE)
|
||||
#include "utils/db/sqlite/db_common.hpp"
|
||||
#include "utils/db/sqlite/db_delete.hpp"
|
||||
#include "utils/db/sqlite/db_insert.hpp"
|
||||
#include "utils/db/sqlite/db_select.hpp"
|
||||
#include "utils/db/sqlite/db_update.hpp"
|
||||
#endif // defined(PROJECT_ENABLE_SQLITE)
|
||||
#if defined(PROJECT_ENABLE_LIBSODIUM)
|
||||
#include "utils/encrypting_reader.hpp"
|
||||
#include "utils/encryption.hpp"
|
||||
#endif // defined(PROJECT_ENABLE_LIBSODIUM)
|
||||
#include "utils/error.hpp"
|
||||
#include "utils/file.hpp"
|
||||
#if defined(PROJECT_ENABLE_LIBSODIUM)
|
||||
#include "utils/hash.hpp"
|
||||
#endif // defined(PROJECT_ENABLE_LIBSODIUM)
|
||||
#include "utils/path.hpp"
|
||||
#include "utils/string.hpp"
|
||||
#include "utils/time.hpp"
|
||||
#if !defined(_WIN32)
|
||||
#include "utils/unix.hpp"
|
||||
#endif // !defined(_WIN32)
|
||||
#if defined(_WIN32)
|
||||
#include "utils/windows.hpp"
|
||||
|
||||
#endif // defined(_WIN32)
|
||||
//
|
||||
#endif // REPERTORY_INCLUDE_UTILS_ALL_HPP_
|
||||
|
@ -23,12 +23,6 @@
|
||||
|
||||
#if defined(PROJECT_ENABLE_SQLITE)
|
||||
|
||||
#include "utils/db/sqlite/db_common.hpp"
|
||||
#include "utils/db/sqlite/db_delete.hpp"
|
||||
#include "utils/db/sqlite/db_insert.hpp"
|
||||
#include "utils/db/sqlite/db_select.hpp"
|
||||
#include "utils/db/sqlite/db_update.hpp"
|
||||
|
||||
namespace repertory {
|
||||
class utils_db_sqlite : public ::testing::Test {
|
||||
public:
|
||||
|
Loading…
x
Reference in New Issue
Block a user