File: config.h.in

package info (click to toggle)
fcitx5-gtk 5.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 608 kB
  • sloc: cpp: 6,313; ansic: 1,268; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (5)
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