Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

Commit

Permalink
start referencing headers in osrm subdir (requires latest osrm develop)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Springmeyer committed Dec 20, 2013
1 parent b8457fc commit c34c8ef
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{
'target_name': '<(module_name)',
'include_dirs': [
'<@(osrm)/include/osrm',
'<@(osrm)/include/',
'./src/'
],
'libraries': [
Expand Down
4 changes: 2 additions & 2 deletions src/engine.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
#include <node_version.h>
#include <node_object_wrap.h>

#include <OSRM.h>
#include <osrm/OSRM.h>
#include <boost/algorithm/string/join.hpp>
#include "query.hpp"
#include "options.hpp"
#include <boost/algorithm/string/join.hpp>

using namespace v8;

Expand Down
4 changes: 0 additions & 4 deletions src/node_osrm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@
#include "query.hpp"
#include "engine.hpp"

// osrm
#include <OSRM.h>


namespace node_osrm {

using namespace v8;
Expand Down
2 changes: 1 addition & 1 deletion src/options.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <node_version.h>
#include <node_object_wrap.h>

#include <OSRM.h>
#include <osrm/OSRM.h>

using namespace v8;

Expand Down
2 changes: 1 addition & 1 deletion src/query.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <node_version.h>
#include <node_object_wrap.h>

#include <OSRM.h>
#include <osrm/OSRM.h>

using namespace v8;

Expand Down

0 comments on commit c34c8ef

Please sign in to comment.