File: XiphosConfig_h.cmake

package info (click to toggle)
xiphos 4.2.1%2Bdfsg1-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 19,184 kB
  • sloc: ansic: 28,127; cpp: 13,020; python: 1,042; xml: 163; sh: 86; makefile: 29
file content (72 lines) | stat: -rw-r--r-- 1,780 bytes parent folder | download | duplicates (3)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Xiphos build script
#
# Copyright (C) 2018 Xiphos Development Team
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program 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 Library General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
#

# Create config.h

message (STATUS "Generating config.h")

# pixmaps dir
set (PACKAGE_PIXMAPS_DIR "${CMAKE_INSTALL_FULL_DATADIR}/${PROJECT_NAME}")

# locale dir
set (PACKAGE_LOCALE_DIR "${CMAKE_INSTALL_FULL_LOCALEDIR}")

# share dir
set (SHARE_DIR "${CMAKE_INSTALL_FULL_DATADIR}/${PROJECT_NAME}")

# textdomain
set (GETTEXT_PACKAGE "${PROJECT_NAME}")

# webkit editor
if (NOT GTKHTML)
  set (USE_WEBKIT_EDITOR ON)
endif ()

# Gtk
if (NOT GTK2)
  set (USE_GTK_3 ON)
  set (USE_GTKBUILDER ON)
endif ()

# select WebkitGtk
if (NOT WEBKIT1)
  set (USE_WEBKIT2 ON)
endif ()

# enable dBus
if (DBUS)
  set (HAVE_DBUS ON)
endif()


# i18n
include (CheckIncludeFiles)
check_include_files ("locale.h;libintl.h" ENABLE_NLS)

# strcasestr
include (CheckFunctionExists)
check_function_exists (strcasestr HAVE_STRCASESTR)


# generate config.h
set (CONFIG_H ${CMAKE_CURRENT_BINARY_DIR}/config.h)
configure_file (
  ${CMAKE_CURRENT_SOURCE_DIR}/cmake/config.h.cmake.in
  ${CMAKE_CURRENT_BINARY_DIR}/config.h
  )