mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
e1d43ade27
commit
c71df5baa5
4 changed files with 56 additions and 5 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue