mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2025-07-03 14:14:11 +00:00
Move db tagging functions to a new postgresql backend lib.
This commit is contained in:
parent
62bf47d0ed
commit
5203fbece2
6 changed files with 25 additions and 3 deletions
21
src/backends/postgresql/CMakeLists.txt
Normal file
21
src/backends/postgresql/CMakeLists.txt
Normal file
|
@ -0,0 +1,21 @@
|
|||
project(${bare_name}-backend-postgresql CXX)
|
||||
|
||||
add_library(${PROJECT_NAME} STATIC
|
||||
tag.cpp
|
||||
)
|
||||
|
||||
#target_include_directories(${PROJECT_NAME}
|
||||
#)
|
||||
#target_include_directories(${PROJECT_NAME} SYSTEM
|
||||
#)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
PRIVATE ${bare_name}-if
|
||||
PRIVATE pq
|
||||
)
|
||||
|
||||
install(TARGETS ${PROJECT_NAME}
|
||||
LIBRARY DESTINATION lib
|
||||
RUNTIME DESTINATION bin
|
||||
ARCHIVE DESTINATION lib/static
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue