ducktorrent/templates/git_version.h.in
King_DuckZ 42a4fbc686 Add support for command line parameters
Using tclap library, released under MIT. This adds the meson
wrap file along with the minimal custom meson.build for tclap,
all the meson code to get config files generated and the
integration of the tclap parser.
2025-04-08 02:05:06 +01:00

26 lines
902 B
C

/* Copyright 2025, Michele "King_DuckZ" Santullo
* This file is part of ducktorrent.
*
* Ducktorrent is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Ducktorrent is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ducktorrent. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#if defined(__cplusplus)
namespace duck {
constexpr char g_proj_git_sha1[] = "@VCS_TAG@";
} //namespace duck
#endif
#define PROJ_GIT_SHA1 "@VCS_TAG@"