You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
779 B
CMake
18 lines
779 B
CMake
###############################################################################
|
|
# Trinity KOffice #
|
|
# --------------- #
|
|
# This file is licensed under the terms of GNU GPL v3 or later. #
|
|
# Improvements and feedback are welcome. #
|
|
###############################################################################
|
|
|
|
check_cxx_source_compiles("
|
|
#include <tqglobal.h>
|
|
#ifdef TQT_NO_SQL
|
|
# error \"No TQt-SQL support\"
|
|
#endif
|
|
" HAS_TQT_SQL)
|
|
|
|
if (NOT HAS_TQT_SQL)
|
|
message(WARNING "TQt-SQL support is not installed, the KWord MailMerge dialog "
|
|
"will be compiled without SQL source support.")
|
|
endif() |