Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
544 changes: 544 additions & 0 deletions modules/yup_core/database/yup_SqliteDatabase.cpp

Large diffs are not rendered by default.

416 changes: 416 additions & 0 deletions modules/yup_core/database/yup_SqliteDatabase.h

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions modules/yup_core/yup_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,11 @@ extern char** environ;
//==============================================================================
#include "files/yup_Watchdog.cpp"

//==============================================================================
#if YUP_MODULE_AVAILABLE_sqlite3_library
#include "database/yup_SqliteDatabase.cpp"
#endif

//==============================================================================
namespace yup
{
Expand Down
5 changes: 5 additions & 0 deletions modules/yup_core/yup_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,11 @@ YUP_END_IGNORE_WARNINGS_MSVC
#include "files/yup_Watchdog.h"
#include "streams/yup_AndroidDocumentInputSource.h"

#if YUP_MODULE_AVAILABLE_sqlite3_library
#include "sqlite3_library/sqlite3_library.h"
#include "database/yup_SqliteDatabase.h"
#endif

#include "detail/yup_CallbackListenerList.h"

#if YUP_CORE_INCLUDE_OBJC_HELPERS && (YUP_MAC || YUP_IOS)
Expand Down
3 changes: 2 additions & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ set (target_modules
opus_library
flac_library
hmp3_library
bungee_library)
bungee_library
sqlite3_library)

if (YUP_PLATFORM_DESKTOP)
list (APPEND target_modules yup_audio_plugin_host)
Expand Down
1 change: 1 addition & 0 deletions tests/yup_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
#include "yup_core/yup_Span.cpp"
#include "yup_core/yup_SparseSet.cpp"
#include "yup_core/yup_SpinLock.cpp"
#include "yup_core/yup_SqliteDatabase.cpp"
#include "yup_core/yup_StatisticsAccumulator.cpp"
#include "yup_core/yup_String.cpp"
#include "yup_core/yup_StringArray.cpp"
Expand Down
Loading
Loading