aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2015-11-09 18:57:47 -0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-09 18:00:56 -0800
commitc71df5baa5fb161a7d873912d27773ab8b2e4212 (patch)
tree878fd4e5dd8533844f360c16a01ab353a14c551a
parente1d43ade275313f643b27b2c30fd372f6c6ccd02 (diff)
downloadsubsurface-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>
-rw-r--r--CMakeLists.txt2
-rw-r--r--desktop-widgets/CMakeLists.txt35
-rw-r--r--desktop-widgets/plugins/facebook/CMakeLists.txt14
-rw-r--r--desktop-widgets/preferences/CMakeLists.txt10
4 files changed, 56 insertions, 5 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)
diff --git a/desktop-widgets/CMakeLists.txt b/desktop-widgets/CMakeLists.txt
index a2beffa5c..dc5503515 100644
--- a/desktop-widgets/CMakeLists.txt
+++ b/desktop-widgets/CMakeLists.txt
@@ -17,6 +17,37 @@ if(NOT DISABLE_PLUGINS)
add_subdirectory(plugins)
endif()
+set (SUBSURFACE_UI
+ about.ui
+ btdeviceselectiondialog.ui
+ configuredivecomputerdialog.ui
+ divecomponentselection.ui
+ divecomputermanagementdialog.ui
+ divelogexportdialog.ui
+ divelogimportdialog.ui
+ diveplanner.ui
+ diveshareexportdialog.ui
+ downloadfromdivecomputer.ui
+ filterwidget.ui
+ listfilter.ui
+ locationInformation.ui
+ maintab.ui
+ mainwindow.ui
+ plannerDetails.ui
+ plannerSettings.ui
+ printoptions.ui
+ renumber.ui
+ searchbar.ui
+ setpoint.ui
+ shiftimagetimes.ui
+ shifttimes.ui
+ tableview.ui
+ templateedit.ui
+ urldialog.ui
+ usersurvey.ui
+ webservices.ui
+)
+
# the interface, in C++
set(SUBSURFACE_INTERFACE
updatemanager.cpp
@@ -81,9 +112,11 @@ set(SUBSURFACE_STATISTICS_LIB_SRCS
)
source_group("Subsurface Statistics" FILES ${SUBSURFACE_STATISTICS_LIB_SRCS})
+qt5_wrap_ui(SUBSURFACE_UI_SRCS ${SUBSURFACE_UI})
+
add_library(subsurface_statistics STATIC ${SUBSURFACE_STATISTICS_LIB_SRCS})
target_link_libraries(subsurface_statistics ${QT_LIBRARIES})
add_library(subsurface_generated_ui STATIC ${SUBSURFACE_UI_HDRS})
target_link_libraries(subsurface_generated_ui ${QT_LIBRARIES})
-add_library(subsurface_interface STATIC ${SUBSURFACE_INTERFACE})
+add_library(subsurface_interface STATIC ${SUBSURFACE_INTERFACE} ${SUBSURFACE_UI_SRCS})
target_link_libraries(subsurface_interface ${QT_LIBRARIES} ${MARBLE_LIBRARIES} ${GRANTLEE_LIBRARIES} subsurface_desktop_preferences)
diff --git a/desktop-widgets/plugins/facebook/CMakeLists.txt b/desktop-widgets/plugins/facebook/CMakeLists.txt
index c0175a26e..eb0da754c 100644
--- a/desktop-widgets/plugins/facebook/CMakeLists.txt
+++ b/desktop-widgets/plugins/facebook/CMakeLists.txt
@@ -1,7 +1,17 @@
-set(FACEBOOK_PLUGIN_SRCS facebook_integration.cpp facebookconnectwidget.cpp)
+
include_directories(${CMAKE_CURRENT_BINARY_DIR})
-add_library(facebook_integration STATIC ${FACEBOOK_PLUGIN_SRCS})
+set(FACEBOOK_PLUGIN_UI
+ facebookconnectwidget.ui
+ socialnetworksdialog.ui
+)
+
+set(FACEBOOK_PLUGIN_SRCS
+ facebook_integration.cpp
+ facebookconnectwidget.cpp
+)
+qt5_wrap_ui(FACEBOOK_PLUGIN_UI_SRCS ${FACEBOOK_PLUGIN_UI})
+add_library(facebook_integration STATIC ${FACEBOOK_PLUGIN_SRCS} ${FACEBOOK_PLUGIN_UI_SRCS})
target_link_libraries(facebook_integration ${QT_LIBRARIES})
add_dependencies(facebook_integration subsurface_corelib) \ No newline at end of file
diff --git a/desktop-widgets/preferences/CMakeLists.txt b/desktop-widgets/preferences/CMakeLists.txt
index 4e506ed73..7a934a2a5 100644
--- a/desktop-widgets/preferences/CMakeLists.txt
+++ b/desktop-widgets/preferences/CMakeLists.txt
@@ -4,7 +4,15 @@ include_directories(.
${CMAKE_BINARY_DIR}
)
-file(GLOB SUBSURFACE_PREFERENCES_UI *.ui)
+set(SUBSURFACE_PREFERENCES_UI
+ preferences_defaults.ui
+ preferences_graph.ui
+ preferences_network.ui
+ preferences_units.ui
+ prefs_georeference.ui
+ prefs_language.ui
+)
+
qt5_wrap_ui(SUBSURFACE_PREFERENCES_UI_HDRS ${SUBSURFACE_PREFERENCES_UI})
source_group("Subsurface Interface Files" FILES ${SUBSURFACE_PREFERENCES_UI})