mirror of
https://github.com/transmission/transmission.git
synced 2025-12-20 02:18:42 +00:00
* build: clang-tidy headers when building libtransmission
* chore: revert `= default` workaround
It was introduced in 6909ec0bad to fix build issues with macOS 10.14. We
no longer support that version.
* fix: clang-tidy warnings for libtransmission
* build: clang-tidy headers when building tests
* fix: clang-tidy warnings for tests
* build: clang-tidy headers when building qt
* code review: don't manually edit mime-types.h
* code review: unify variable naming for static private members
22 lines
783 B
C
22 lines
783 B
C
#pragma once
|
|
|
|
// NOLINTBEGIN
|
|
|
|
#define PEERID_PREFIX "${TR_PEER_ID_PREFIX}"
|
|
#define USERAGENT_PREFIX "${TR_USER_AGENT_PREFIX}"
|
|
#define VCS_REVISION "${TR_VCS_REVISION}"
|
|
#define VCS_REVISION_NUM ${TR_VCS_REVISION}
|
|
#define SHORT_VERSION_STRING "${TR_USER_AGENT_PREFIX}"
|
|
#define LONG_VERSION_STRING "${TR_USER_AGENT_PREFIX} (${TR_VCS_REVISION})"
|
|
#define VERSION_STRING_INFOPLIST ${TR_USER_AGENT_PREFIX}
|
|
#define BUILD_STRING_INFOPLIST ${CFBUNDLE_VERSION}
|
|
#define MAJOR_VERSION ${TR_VERSION_MAJOR}
|
|
#define MINOR_VERSION ${TR_VERSION_MINOR}
|
|
#define PATCH_VERSION ${TR_VERSION_PATCH}
|
|
|
|
#cmakedefine TR_BETA_RELEASE 1
|
|
#cmakedefine TR_NIGHTLY_RELEASE 1
|
|
#cmakedefine TR_STABLE_RELEASE 1
|
|
|
|
// NOLINTEND
|