* Add CLI11 lib * Use newer arg parser for to add --config-toml arg * Fix bug where coco doesn't run in elevated console * Improve macro names * Fixed incorrect macro name * Improve coverage for TOML config load * Allow legacy args and use toml config arg in launch.json * Update ChangeLog * Fail coverage workflow on integ test fail * Remove line break
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
/*
|
|
* synergy -- mouse and keyboard sharing utility
|
|
* Copyright (C) 2012 Symless Ltd.
|
|
* Copyright (C) 2002 Chris Schoeneman
|
|
*
|
|
* This package is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* found in the file LICENSE that should have accompanied this file.
|
|
*
|
|
* This package 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#if !defined(SYNERGY_VERSION)
|
|
#error version was not passed to the compiler
|
|
#endif
|
|
|
|
const auto kAppName = "Synergy";
|
|
const auto kAppDescription = "Mouse and keyboard sharing utility";
|
|
const auto kVersion = SYNERGY_VERSION;
|
|
|
|
#ifdef GIT_SHA_SHORT
|
|
const auto kVersionGitSha = GIT_SHA_SHORT;
|
|
#else
|
|
const auto kVersionGitSha = "";
|
|
#endif
|
|
|
|
#ifndef NDEBUG
|
|
const auto kDebugBuild = true;
|
|
#else
|
|
const auto kDebugBuild = false;
|
|
#endif
|