Skip to content

Commit 672dfd4

Browse files
committed
fix(db): use correct sqlite driver header path
2 parents 559fdfb + 935501e commit 672dfd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,9 @@ if (VIX_DB_HAS_MYSQL)
243243
list(APPEND VIX_DB_SOURCES src/mysql/MySQLDriver.cpp)
244244
endif()
245245

246-
# SQLite driver sources (future: create include/vix/db/sqlite/SQLiteDriver.hpp + src/sqlite/SQLiteDriver.cpp)
246+
# SQLite driver sources
247247
if (VIX_DB_HAS_SQLITE)
248-
list(APPEND VIX_DB_PUBLIC_HEADERS include/vix/db/sqlite/SQLiteDriver.hpp)
248+
list(APPEND VIX_DB_PUBLIC_HEADERS include/vix/db/drivers/sqlite/SQLiteDriver.hpp)
249249
list(APPEND VIX_DB_SOURCES src/sqlite/SQLiteDriver.cpp)
250250
endif()
251251

0 commit comments

Comments
 (0)