mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2025-08-20 15:40:50 +00:00
Begin implementing the sqlite backend.
This commit is contained in:
parent
848084462e
commit
a6d937a1c8
5 changed files with 402 additions and 0 deletions
17
src/backends/sqlite/CMakeLists.txt
Normal file
17
src/backends/sqlite/CMakeLists.txt
Normal file
|
@ -0,0 +1,17 @@
|
|||
project(${bare_name}-backend-sqlite CXX)
|
||||
|
||||
add_library(${PROJECT_NAME} SHARED
|
||||
backend_sqlite.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
PRIVATE ${bare_name}-inc
|
||||
PRIVATE SQLiteCpp
|
||||
)
|
||||
|
||||
install(TARGETS ${PROJECT_NAME}
|
||||
LIBRARY DESTINATION lib
|
||||
RUNTIME DESTINATION bin
|
||||
ARCHIVE DESTINATION lib/static
|
||||
)
|
||||
ln_backend(${PROJECT_NAME})
|
Loading…
Add table
Add a link
Reference in a new issue