1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-07-02 14:04:22 +00:00

Move postgresql backend's include files to a new db subdir.

Fix build and remove unneeded include in tag.cpp
This commit is contained in:
King_DuckZ 2016-05-23 19:50:12 +02:00
parent 70caa9e26c
commit fb722719b2
12 changed files with 13 additions and 13 deletions

View file

@ -8,8 +8,9 @@ add_library(${PROJECT_NAME} STATIC
dbsource.cpp dbsource.cpp
) )
#target_include_directories(${PROJECT_NAME} target_include_directories(${PROJECT_NAME}
#) PUBLIC ${CMAKE_SOURCE_DIR}/include/backends/postgresql
)
#target_include_directories(${PROJECT_NAME} SYSTEM #target_include_directories(${PROJECT_NAME} SYSTEM
#) #)

View file

@ -15,8 +15,8 @@
* along with "dindexer". If not, see <http://www.gnu.org/licenses/>. * along with "dindexer". If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "backends/postgresql/dbsource.hpp" #include "db/dbsource.hpp"
#include "backends/postgresql/settings.hpp" #include "db/settings.hpp"
#include "pq/connection.hpp" #include "pq/connection.hpp"
#include "helpers/infix_iterator.hpp" #include "helpers/infix_iterator.hpp"
#include <ciso646> #include <ciso646>

View file

@ -15,8 +15,8 @@
* along with "dindexer". If not, see <http://www.gnu.org/licenses/>. * along with "dindexer". If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "backends/postgresql/delete.hpp" #include "db/delete.hpp"
#include "backends/postgresql/settings.hpp" #include "db/settings.hpp"
#include "pq/connection.hpp" #include "pq/connection.hpp"
#include "helpers/infix_iterator.hpp" #include "helpers/infix_iterator.hpp"
#include <sstream> #include <sstream>

View file

@ -15,8 +15,8 @@
* along with "dindexer". If not, see <http://www.gnu.org/licenses/>. * along with "dindexer". If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "backends/postgresql/locate.hpp" #include "db/locate.hpp"
#include "backends/postgresql/settings.hpp" #include "db/settings.hpp"
#include "pq/connection.hpp" #include "pq/connection.hpp"
#include "dindexer-machinery/tiger.hpp" #include "dindexer-machinery/tiger.hpp"
#include <utility> #include <utility>

View file

@ -15,8 +15,8 @@
* along with "dindexer". If not, see <http://www.gnu.org/licenses/>. * along with "dindexer". If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "backends/postgresql/scan.hpp" #include "db/scan.hpp"
#include "backends/postgresql/settings.hpp" #include "db/settings.hpp"
#include "pq/connection.hpp" #include "pq/connection.hpp"
#include "dindexer-machinery/recorddata.hpp" #include "dindexer-machinery/recorddata.hpp"
#include <string> #include <string>

View file

@ -15,10 +15,9 @@
* along with "dindexer". If not, see <http://www.gnu.org/licenses/>. * along with "dindexer". If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "backends/postgresql/tag.hpp" #include "db/tag.hpp"
#include "backends/postgresql/settings.hpp" #include "db/settings.hpp"
#include "pq/connection.hpp" #include "pq/connection.hpp"
#include "dindexer-common/settings.hpp"
#include <ciso646> #include <ciso646>
namespace dinbpostgres { namespace dinbpostgres {