diff options
author | José Fonseca <jfonseca@vmware.com> | 2015-03-09 11:04:53 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2015-03-09 11:06:49 +0000 |
commit | e92426025c3d6ec05633907af1bcb08a116533f2 (patch) | |
tree | 5d2c2903eb147941c75524102df74d3cece5a04b | |
parent | 8de42d78b9ed6d303afaf35dca1340f918e421e0 (diff) |
cmake: Fix CMP0043 violations.
https://bugreports.qt.io/browse/QTBUG-39457
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | docs/INSTALL.markdown | 2 | ||||
-rw-r--r-- | gui/CMakeLists.txt | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 00c71d4b..6ff01fea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 2.8.10) +cmake_minimum_required (VERSION 2.8.11) # Use clang on MacOSX. gcc doesn't support __thread key, and Apple has diff --git a/docs/INSTALL.markdown b/docs/INSTALL.markdown index 90cfe3fc..de8b6e25 100644 --- a/docs/INSTALL.markdown +++ b/docs/INSTALL.markdown @@ -6,7 +6,7 @@ Requirements common for all platforms: * Python Image Library -* CMake version 2.8.8 or higher (tested with version 2.8.12.2) +* CMake version 2.8.11 or higher (tested with version 2.8.12.2) The GUI also dependends on: diff --git a/gui/CMakeLists.txt b/gui/CMakeLists.txt index 7bce4eb3..ae642570 100644 --- a/gui/CMakeLists.txt +++ b/gui/CMakeLists.txt @@ -62,8 +62,6 @@ include_directories( add_executable(qapitrace ${qapitrace_SRCS} ${qapitrace_UIS_H}) -qt5_use_modules(qapitrace Widgets WebKitWidgets) - target_link_libraries (qapitrace image common |