mirror of
https://github.com/HowardHinnant/date.git
synced 2025-01-14 09:47:57 +08:00
Add INSTALL configuration.
This commit is contained in:
parent
b4ca58d9a8
commit
137c317cc6
12
tz.cpp
12
tz.cpp
@ -207,8 +207,20 @@ static std::string get_install()
|
||||
return install;
|
||||
}
|
||||
|
||||
#ifndef INSTALL
|
||||
|
||||
static const std::string install = get_install();
|
||||
|
||||
#else // INSTALL
|
||||
|
||||
#define STRINGIZEIMP(x) #x
|
||||
#define STRINGIZE(x) STRINGIZEIMP(x)
|
||||
|
||||
static const std::string install = STRINGIZE(INSTALL) +
|
||||
std::string(1, folder_delimiter) + "tzdata";
|
||||
|
||||
#endif // INSTALL
|
||||
|
||||
static
|
||||
std::string
|
||||
get_download_gz_file(const std::string& version)
|
||||
|
Loading…
x
Reference in New Issue
Block a user