mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
046001e571
In collaboration with Scott Kostyshak: With Qt 4 we could use Q_WS_X11, defined by FindQt4.cmake. In Qt 5, there is no FindQt5.cmake. Instead we now define our own variable, QT_USES_X11 by using class QX11Info available only on X11. (http://qt-project.org/doc/qt-5/QX11Info.html) The main consequence of this improved support is that now the keytests can be run (ctest -R "keytest") when LyX is compiled with Qt 5. Before, with Qt 5 we did not know if X11 was available, which is needed by xvkbd, so the tests were not enabled. Note, however, that many tests fail with Qt version 5.2.1 because there was a change in the event handling mechanism in Qt that causes xvkbd to be unable to pass capital letters (so case sensitive greps in the tests fail). This needs to be investigated and reported.
145 lines
4.6 KiB
CMake
145 lines
4.6 KiB
CMake
# This file is part of LyX, the document processor.
|
|
# Licence details can be found in the file COPYING.
|
|
#
|
|
# Copyright (c) 2006, Peter Kümmel, <syntheticpp@gmx.net>
|
|
#
|
|
|
|
include(CheckIncludeFile)
|
|
include(CheckIncludeFileCXX)
|
|
include(CheckIncludeFiles)
|
|
include(CheckSymbolExists)
|
|
include(CheckFunctionExists)
|
|
include(CheckLibraryExists)
|
|
include(CheckTypeSize)
|
|
include(CheckCXXSourceCompiles)
|
|
include(MacroBoolTo01)
|
|
include(TestBigEndian)
|
|
|
|
test_big_endian(WORDS_BIGENDIAN)
|
|
|
|
#check_include_file_cxx(istream HAVE_ISTREAM)
|
|
#check_include_file_cxx(ostream HAVE_OSTREAM)
|
|
#check_include_file_cxx(sstream HAVE_SSTREAM)
|
|
#check_include_file_cxx(ios HAVE_IOS)
|
|
#check_include_file_cxx(locale HAVE_LOCALE)
|
|
|
|
# defines will be written to configIncludes.h
|
|
set(Include_Defines)
|
|
foreach(_h_file aspell.h aspell/aspell.h limits.h locale.h
|
|
stdlib.h sys/stat.h sys/time.h sys/types.h sys/utime.h
|
|
sys/socket.h unistd.h inttypes.h utime.h string.h argz.h)
|
|
string(REGEX REPLACE "[/\\.]" "_" _hf ${_h_file})
|
|
string(TOUPPER ${_hf} _HF)
|
|
check_include_files(${_h_file} HAVE_${_HF})
|
|
set(Include_Defines "${Include_Defines}#cmakedefine HAVE_${_HF} 1\n")
|
|
endforeach()
|
|
configure_file(${LYX_CMAKE_DIR}/configIncludes.cmake ${TOP_BINARY_DIR}/configIncludes.h.cmake)
|
|
configure_file(${TOP_BINARY_DIR}/configIncludes.h.cmake ${TOP_BINARY_DIR}/configIncludes.h)
|
|
|
|
# defines will be written to configFunctions.h
|
|
set(Function_Defines)
|
|
foreach(_f alloca __argz_count __argz_next __argz_stringify
|
|
chmod close _close dcgettext fcntl fork __fsetlocking
|
|
getcwd getegid getgid getpid _getpid gettext getuid lstat lockf mempcpy mkdir _mkdir
|
|
mkfifo open _open pclose _pclose popen _popen putenv readlink
|
|
setenv setlocale strcasecmp stpcpy strdup strerror strtoul tsearch unsetenv wcslen)
|
|
string(TOUPPER ${_f} _UF)
|
|
check_function_exists(${_f} HAVE_${_UF})
|
|
set(Function_Defines "${Function_Defines}#cmakedefine HAVE_${_UF} 1\n")
|
|
endforeach()
|
|
configure_file(${LYX_CMAKE_DIR}/configFunctions.cmake ${TOP_BINARY_DIR}/configFunctions.h.cmake)
|
|
configure_file(${TOP_BINARY_DIR}/configFunctions.h.cmake ${TOP_BINARY_DIR}/configFunctions.h)
|
|
|
|
check_symbol_exists(alloca "malloc.h" HAVE_SYMBOL_ALLOCA)
|
|
check_symbol_exists(asprintf "stdio.h" HAVE_ASPRINTF)
|
|
check_symbol_exists(wprintf "stdio.h" HAVE_WPRINTF)
|
|
check_symbol_exists(snprintf "stdio.h" HAVE_SNPRINTF)
|
|
check_symbol_exists(printf "stdio.h" HAVE_POSIX_PRINTF)
|
|
check_symbol_exists(pid_t "sys/types.h" HAVE_PID_T)
|
|
check_symbol_exists(intmax_t "inttypes.h" HAVE_INTTYPES_H_WITH_UINTMAX)
|
|
check_symbol_exists(uintmax_t "stdint.h" HAVE_STDINT_H_WITH_UINTMAX)
|
|
check_symbol_exists(LC_MESSAGES "locale.h" HAVE_LC_MESSAGES)
|
|
|
|
check_type_size(intmax_t HAVE_INTMAX_T)
|
|
macro_bool_to_01(HAVE_UINTMAX_T HAVE_STDINT_H_WITH_UINTMAX)
|
|
|
|
check_type_size("long double" HAVE_LONG_DOUBLE)
|
|
check_type_size("long long" HAVE_LONG_LONG)
|
|
check_type_size(wchar_t HAVE_WCHAR_T)
|
|
check_type_size(wint_t HAVE_WINT_T)
|
|
|
|
|
|
#check_cxx_source_compiles(
|
|
# "
|
|
# #include <algorithm>
|
|
# using std::count;
|
|
# int countChar(char * b, char * e, char const c)
|
|
# {
|
|
# return count(b, e, c);
|
|
# }
|
|
# int main(){return 0;}
|
|
# "
|
|
#HAVE_STD_COUNT)
|
|
|
|
#check_cxx_source_compiles(
|
|
# "
|
|
# #include <cctype>
|
|
# using std::tolower;
|
|
# int main(){return 0;}
|
|
# "
|
|
#CXX_GLOBAL_CSTD)
|
|
|
|
check_cxx_source_compiles(
|
|
"
|
|
#include <iconv.h>
|
|
// this declaration will fail when there already exists a non const char** version which returns size_t
|
|
double iconv(iconv_t cd, char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft);
|
|
int main() { return 0; }
|
|
"
|
|
HAVE_ICONV_CONST)
|
|
|
|
check_cxx_source_compiles(
|
|
"
|
|
int i[ ( sizeof(wchar_t)==2 ? 1 : -1 ) ];
|
|
int main(){return 0;}
|
|
"
|
|
SIZEOF_WCHAR_T_IS_2)
|
|
|
|
check_cxx_source_compiles(
|
|
"
|
|
int i[ ( sizeof(wchar_t)==4 ? 1 : -1 ) ];
|
|
int main(){return 0;}
|
|
"
|
|
SIZEOF_WCHAR_T_IS_4)
|
|
|
|
if (Qt5X11Extras_FOUND)
|
|
get_target_property(_x11extra_prop Qt5::X11Extras IMPORTED_CONFIGURATIONS)
|
|
get_target_property(_x11extra_lib Qt5::X11Extras IMPORTED_SONAME_${_x11extra_prop})
|
|
set(CMAKE_REQUIRED_LIBRARIES ${_x11extra_lib})
|
|
set(CMAKE_REQUIRED_INCLUDES ${Qt5X11Extras_INCLUDE_DIRS})
|
|
set(CMAKE_REQUIRED_FLAGS ${Qt5X11Extras_EXECUTABLE_COMPILE_FLAGS})
|
|
check_cxx_source_compiles(
|
|
"
|
|
#include <QtX11Extras/QX11Info>
|
|
int main()
|
|
{
|
|
bool isX11 = QX11Info::isPlatformX11();
|
|
}
|
|
"
|
|
QT_USES_X11)
|
|
elseif(QT4_FOUND)
|
|
set(CMAKE_REQUIRED_LIBRARIES ${QT_QTGUI_LIBRARY})
|
|
set(CMAKE_REQUIRED_INCLUDES ${QT_INCLUDES})
|
|
check_cxx_source_compiles(
|
|
"
|
|
#include <QtGui/QX11Info>
|
|
int main()
|
|
{
|
|
QX11Info *qxi = new QX11Info;
|
|
qxi->~QX11Info();
|
|
}
|
|
"
|
|
QT_USES_X11)
|
|
endif()
|
|
|