1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-08-22 16:00:50 +00:00

Reorganize source code in directories.

This commit is contained in:
King_DuckZ 2015-12-04 12:58:13 +00:00
parent 3a67f0ec29
commit d8be48d2e8
25 changed files with 50 additions and 27 deletions

11
src/pq/CMakeLists.txt Normal file
View file

@ -0,0 +1,11 @@
project(dindexer-pq CXX)
add_library(${PROJECT_NAME} STATIC
connection.cpp
databaseexception.cpp
resultset.cpp
)
target_link_libraries(${PROJECT_NAME}
PRIVATE dindexer
)