osrm-backend/contractor
Daniel J. Hofmann 809bdb7c1f Fixes version generation, no longer derives version on git tags.
We were stuck on the 4.5.0 tag from develop, since we searched for the
latest tag, but release tags are done on the master branch.

This commit rips out all the code for deriving the version on git tags.

Instead, we define major, minor, and patch versions in the CMakeLists
and then pass it on to:

- the `libosrm.pc` `pkg-config` file

- a `version.hpp` header that makes use of the preprocessor's string
  concatenation to provide an easy way for generating version string
  literals such as "v4.8.0".

That is, in the source code please now use the following defines:

    #define OSRM_VERSION_MAJOR "@OSRM_VERSION_MAJOR@"
    #define OSRM_VERSION_MINOR "@OSRM_VERSION_MINOR@"
    #define OSRM_VERSION_PATCH "@OSRM_VERSION_PATCH@"

    #define OSRM_VERSION "v" OSRM_VERSION_MAJOR "." OSRM_VERSION_MINOR "." OSRM_VERSION_PATCH
2015-09-30 18:22:25 +02:00
..
contractor_options.cpp Fixes version generation, no longer derives version on git tags. 2015-09-30 18:22:25 +02:00
contractor_options.hpp Serialize out .core file containing core node markers 2015-08-19 12:27:44 +02:00
contractor.hpp Remove TBB usage from hot code paths 2015-09-28 20:37:09 +02:00
edge_based_graph_factory.cpp Fix Coverity warning in EBGF 2015-08-20 12:28:14 +02:00
edge_based_graph_factory.hpp Modernize the code base to C++11 standards and beyond. 2015-08-18 12:56:34 +02:00
processing_chain.cpp Fixes version generation, no longer derives version on git tags. 2015-09-30 18:22:25 +02:00
processing_chain.hpp Ownership: vector already owns, no need for wrapping in unique_ptr. 2015-09-09 18:53:11 +02:00
speed_profile.hpp Move graph compression code outside of EBGF 2015-07-01 18:07:29 +02:00