Add the ability to build with Qt4 even if Qt5 was found

This commit is contained in:
Uwe L. Korn 2013-08-03 16:32:52 +02:00
parent 6be1967c81
commit 8722799afe
1 changed files with 7 additions and 2 deletions

View File

@ -11,8 +11,13 @@ set(QTKEYCHAIN_SOVERSION 0)
set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" "${PROJECT_SOURCE_DIR}/cmake/Modules")
include(GNUInstallDirs)
# try Qt5 first, and prefer that if found
find_package(Qt5Core QUIET)
option(BUILD_WITH_QT4 "Build qtkeychain with Qt4 no matter if Qt5 was found" OFF)
if( NOT BUILD_WITH_QT4 )
# try Qt5 first, and prefer that if found
find_package(Qt5Core QUIET)
endif()
if (Qt5Core_FOUND)
if(UNIX AND NOT APPLE)
find_package(Qt5DBus REQUIRED)