make sure pgraster is rebuilt if headers change inside the postgis plugin dir
This commit is contained in:
parent
e03448ecb9
commit
e4c7e2419c
4 changed files with 7 additions and 10 deletions
|
@ -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'
|
||||
|
|
|
@ -20,10 +20,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
|
||||
#include <mapnik/debug.hpp>
|
||||
|
|
|
@ -42,9 +42,9 @@
|
|||
#include <string>
|
||||
#include <memory>
|
||||
|
||||
#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;
|
||||
|
|
|
@ -22,8 +22,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>
|
||||
|
|
Loading…
Add table
Reference in a new issue