forked from osm2pgsql-dev/osm2pgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.cpp.in
More file actions
34 lines (28 loc) · 736 Bytes
/
Copy pathversion.cpp.in
File metadata and controls
34 lines (28 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
* SPDX-License-Identifier: GPL-2.0-or-later
*
* This file is part of osm2pgsql (https://osm2pgsql.org/).
*
* Copyright (C) 2006-2021 by the osm2pgsql developer community.
* For a full list of authors see the git log.
*/
char const *get_build_type() noexcept
{
return "@CMAKE_BUILD_TYPE@";
}
char const *get_osm2pgsql_version() noexcept
{
return "@PACKAGE_VERSION@@VERSION_FROM_GIT@";
}
char const *get_osm2pgsql_short_version() noexcept
{
return "@PACKAGE_VERSION@";
}
char const *get_minimum_postgresql_server_version() noexcept
{
return "@MINIMUM_POSTGRESQL_SERVER_VERSION@";
}
unsigned long get_minimum_postgresql_server_version_num() noexcept
{
return @MINIMUM_POSTGRESQL_SERVER_VERSION_NUM@;
}