1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-08-18 15:29:48 +00:00

Make dindexer-common depend on postgre backend and fix build

This commit is contained in:
King_DuckZ 2016-05-24 09:36:38 +02:00
parent fb722719b2
commit 8f98495049
15 changed files with 15 additions and 15 deletions

View file

@ -16,7 +16,6 @@ target_include_directories(${PROJECT_NAME}
target_link_libraries(${PROJECT_NAME}
PRIVATE ${bare_name}-if
PRIVATE ${bare_name}-common
PRIVATE ${bare_name}-backend-postgresql
)
target_compile_features(${PROJECT_NAME}

View file

@ -17,7 +17,7 @@
#include "listdircontent.hpp"
#include "entrypath.hpp"
#include "backends/postgresql/dbsource.hpp"
#include "db/dbsource.hpp"
#include "helpers/infix_iterator.hpp"
#include <cassert>
#include <utility>

View file

@ -19,7 +19,7 @@
#include "commandprocessor.hpp"
#include "dindexer-common/settings.hpp"
#include "entrypath.hpp"
#include "backends/postgresql/dbsource.hpp"
#include "db/dbsource.hpp"
#include "dindexerConfig.h"
#include "linereader.hpp"
#include "listdircontent.hpp"