mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 11:22:55 +00:00
14 lines
290 B
CMake
14 lines
290 B
CMake
set(CMAKE_REQUIRED_INCLUDES ${QT_INCLUDES})
|
|
set(CMAKE_REQUIRED_DEFINITIONS "")
|
|
set(CMAKE_REQUIRED_FLAGS "")
|
|
CHECK_CXX_SOURCE_COMPILES("
|
|
#include <QtCore/QtGlobal>
|
|
int main()
|
|
{
|
|
#if defined(QT_NO_GLIBASDF)
|
|
#error \"Qt was compiled with Glib disabled\"
|
|
#endif
|
|
return 0;
|
|
}"
|
|
QT4_GLIB_SUPPORT)
|
|
|