Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Geyer <debfx@fobos.de>2012-10-27 12:52:54 +0400
committerFelix Geyer <debfx@fobos.de>2012-10-27 12:52:54 +0400
commit16094be4a3953e3e550dd05c78c8866ad8ff08e3 (patch)
tree04232c58b82fea3d268a998fe82642132643cb57
parent8d9b20901445548208a12ce3eeaa3ab54ec09430 (diff)
Reduce required cmake version to 2.8.8 again.2.0-alpha3
It doesn't seem to be required in all cases.
-rw-r--r--src/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 361001a45..e3b017149 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -218,7 +218,7 @@ install(TARGETS ${PROGNAME}
add_subdirectory(autotype)
-if(APPLE AND NOT (${CMAKE_VERSION} VERSION_LESS 2.8.9))
+if(APPLE AND NOT (${CMAKE_VERSION} VERSION_LESS 2.8.8))
if(QT_MAC_USE_COCOA AND EXISTS "${QT_LIBRARY_DIR}/Resources/qt_menu.nib")
install(DIRECTORY "${QT_LIBRARY_DIR}/Resources/qt_menu.nib"
DESTINATION "${DATA_INSTALL_DIR}")
@@ -236,7 +236,7 @@ if(APPLE AND NOT (${CMAKE_VERSION} VERSION_LESS 2.8.9))
install_qt4_executable(${PROGNAME}.app "qjpeg;qgif;qico;qtaccessiblewidgets")
endif()
-if(MINGW AND NOT (${CMAKE_VERSION} VERSION_LESS 2.8.9))
+if(MINGW AND NOT (${CMAKE_VERSION} VERSION_LESS 2.8.8))
set(CPACK_GENERATOR "ZIP")
set(CPACK_STRIP_FILES ON)
set(CPACK_PACKAGE_FILE_NAME "${PROGNAME}-${KEEPASSX_VERSION_NUM}")