make sure pgraster is rebuilt if headers change inside the postgis plugin dir

This commit is contained in:
Dane Springmeyer 2014-08-12 20:19:35 -07:00
parent e458959ea3
commit b302929fb4
4 changed files with 7 additions and 10 deletions

View file

@ -38,9 +38,6 @@ plugin_sources = Split(
cxxflags = []
plugin_env['LIBS'] = []
# TODO: use variable for top-level dir
plugin_env['CXXFLAGS'].append('-Iplugins/input/postgis')
if env['RUNTIME_LINK'] == 'static':
# pkg-config is more reliable than pg_config across platforms
cmd = 'pkg-config libpq --libs --static'

View file

@ -24,10 +24,10 @@
*
*****************************************************************************/
#include "connection_manager.hpp"
#include "../postgis/connection_manager.hpp"
#include "../postgis/asyncresultset.hpp"
#include "pgraster_datasource.hpp"
#include "pgraster_featureset.hpp"
#include "asyncresultset.hpp"
// mapnik

View file

@ -47,9 +47,9 @@
#include <vector>
#include <string>
#include "connection_manager.hpp"
#include "resultset.hpp"
#include "cursorresultset.hpp"
#include "../postgis/connection_manager.hpp"
#include "../postgis/resultset.hpp"
#include "../postgis/cursorresultset.hpp"
using mapnik::transcoder;
using mapnik::datasource;

View file

@ -26,8 +26,8 @@
#include "pgraster_featureset.hpp"
#include "pgraster_wkb_reader.hpp"
#include "resultset.hpp"
#include "cursorresultset.hpp"
#include "../postgis/resultset.hpp"
#include "../postgis/cursorresultset.hpp"
// mapnik
#include <mapnik/global.hpp>