1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
/*
* SPDX-FileCopyrightText: 2010~2020 CSSlayer <wengxt@gmail.com>
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#ifndef ___CONFIG_H___
#define ___CONFIG_H___
#define LOCALEDIR "@CMAKE_INSTALL_PREFIX@/locale"
#define NO_SNOOPER_APPS "@NO_SNOOPER_APPS@"
#define NO_PREEDIT_APPS "@NO_PREEDIT_APPS@"
#define SYNC_MODE_APPS "@SYNC_MODE_APPS@"
#cmakedefine ENABLE_SNOOPER
#ifdef ENABLE_SNOOPER
#define _ENABLE_SNOOPER 1
#else
#define _ENABLE_SNOOPER 0
#endif
#endif
|