diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-11-09 18:57:47 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-09 18:00:56 -0800 |
commit | c71df5baa5fb161a7d873912d27773ab8b2e4212 (patch) | |
tree | 878fd4e5dd8533844f360c16a01ab353a14c551a /CMakeLists.txt | |
parent | e1d43ade275313f643b27b2c30fd372f6c6ccd02 (diff) | |
download | subsurface-c71df5baa5fb161a7d873912d27773ab8b2e4212.tar.gz |
Don't rely on CMAKE_AUTOUIC
Some old CMakes that we use had problems with it, change to use
the qt5_wrap_ui macro that's bundled with Qt.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 17a68314b..e4bdbb741 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 2.8.11) # global settings set(CMAKE_AUTOMOC ON) -set(CMAKE_AUTOUIC ON) + option(LIBGIT2_FROM_PKGCONFIG "use pkg-config to retrieve libgit2" OFF) option(LIBDC_FROM_PKGCONFIG "use pkg-config to retrieve libdivecomputer" OFF) option(LIBGRANTLEE_FROM_PKGCONFIG "use pkg-config to retrieve grantlee" OFF) |