forked from organicmaps/organicmaps-tmp
Fix include path for integration_tests
This commit is contained in:
parent
ef1b54ccd1
commit
3413b7dd18
4 changed files with 19 additions and 19 deletions
|
@ -1,6 +1,6 @@
|
|||
#include "../testing/testing.hpp"
|
||||
#include "testing/testing.hpp"
|
||||
|
||||
#include "osrm_test_tools.hpp"
|
||||
#include "integration_tests/osrm_test_tools.hpp"
|
||||
|
||||
#include "../indexer/mercator.hpp"
|
||||
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
#include "osrm_test_tools.hpp"
|
||||
#include "integration_tests/osrm_test_tools.hpp"
|
||||
|
||||
#include "../testing/testing.hpp"
|
||||
#include "testing/testing.hpp"
|
||||
|
||||
#include "../indexer/index.hpp"
|
||||
#include "indexer/index.hpp"
|
||||
|
||||
#include "../geometry/distance_on_sphere.hpp"
|
||||
#include "geometry/distance_on_sphere.hpp"
|
||||
|
||||
#include "../routing/route.hpp"
|
||||
#include "routing/route.hpp"
|
||||
|
||||
#include "../map/feature_vec_model.hpp"
|
||||
#include "map/feature_vec_model.hpp"
|
||||
|
||||
#include "../platform/platform.hpp"
|
||||
#include "../platform/preferred_languages.hpp"
|
||||
#include "platform/platform.hpp"
|
||||
#include "platform/preferred_languages.hpp"
|
||||
|
||||
#include "../search/search_engine.hpp"
|
||||
#include "search/search_engine.hpp"
|
||||
|
||||
|
||||
using namespace routing;
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
#pragma once
|
||||
|
||||
#include "../std/shared_ptr.hpp"
|
||||
#include "../std/string.hpp"
|
||||
#include "../std/vector.hpp"
|
||||
#include "../std/set.hpp"
|
||||
#include "std/shared_ptr.hpp"
|
||||
#include "std/string.hpp"
|
||||
#include "std/vector.hpp"
|
||||
#include "std/set.hpp"
|
||||
|
||||
#include "../routing/osrm_router.hpp"
|
||||
#include "routing/osrm_router.hpp"
|
||||
|
||||
/*
|
||||
* These tests are developed to simplify routing integration tests writing.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#include "../testing/testing.hpp"
|
||||
#include "testing/testing.hpp"
|
||||
|
||||
#include "osrm_test_tools.hpp"
|
||||
#include "integration_tests/osrm_test_tools.hpp"
|
||||
|
||||
#include "../routing/route.hpp"
|
||||
#include "routing/route.hpp"
|
||||
|
||||
|
||||
using namespace routing;
|
||||
|
|
Loading…
Add table
Reference in a new issue