File: config.h.cmake

package info (click to toggle)
cherrytree 0.99.30%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 13,672 kB
  • sloc: cpp: 91,646; ansic: 14,611; xml: 1,054; sh: 195; python: 187; javascript: 80; makefile: 10
file content (29 lines) | stat: -rw-r--r-- 813 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

#pragma once

/* Name of package */
#define PACKAGE "${PROJECT_NAME}"

/* Name of package */
#define PACKAGE_NAME "${PROJECT_NAME}"

/* Version of package */
#define PACKAGE_VERSION "${CT_VERSION}"
#define PACKAGE_VERSION_WINDOWS ${CT_VERSION_WINDOWS}
#define PACKAGE_VERSION_WINDOWS_STR "${CT_VERSION}.0"

/* The domain to use with gettext */
#define GETTEXT_PACKAGE "${PROJECT_NAME}"

/* Localization directory */
#define CHERRYTREE_LOCALEDIR "${CMAKE_INSTALL_PREFIX}/${PACKAGE_LOCALE_DIR}"

/* data directory */
#define CHERRYTREE_DATADIR "${CMAKE_INSTALL_PREFIX}/${CHERRYTREE_SHARE_INSTALL}"

/* always defined to indicate that i18n is enabled */
#cmakedefine ENABLE_NLS 1

/* folder with root CMakeLists.txt */
#define _CMAKE_SOURCE_DIR "${CMAKE_SOURCE_DIR}"
#define _CMAKE_BINARY_DIR "${CMAKE_BINARY_DIR}"