blob: 0fe57b1777c6e9b71d579cce380943eb2a7bba58 (
plain)
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
|
###############################################################################
# Trinity KOffice #
# --------------- #
# This file is licensed under the terms of GNU GPL v3 or later. #
# Improvements and feedback are welcome. #
###############################################################################
### TQt/TDE ###################################################################
find_package(TQt)
find_package(TDE)
tde_setup_architecture_flags()
tde_setup_largefiles()
### Big Endian ################################################################
include(TestBigEndian)
test_big_endian(WORDS_BIGENDIAN)
### System headers ############################################################
check_include_file("unistd.h" HAVE_UNISTD_H)
check_include_file("sys/param.h" HAVE_SYS_PARAM_H)
check_include_file("floatingpoint.h" HAVE_FLOATINGPOINT_H)
check_include_file("paths.h" HAVE_PATHS_H)
### KOffice library ##########################################################
if (BUILD_CHALK OR BUILD_KARBON OR BUILD_KIVIO OR BUILD_KPRESENTER)
set(BUILD_KOPAINTER ON)
endif()
include(lib/ConfigureChecks.cmake)
include(filters/ConfigureChecks.cmake)
### KOffice applications ######################################################
if (BUILD_CHALK)
include(chalk/ConfigureChecks.cmake)
endif()
# kate: indent-width 2; replace-tabs true;
|