mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
b35ccc3a35
Our preferences dialog right now is a rather huge dialog with more than 9 subpages, and all of those pages are programmed inside of the same class, same methods and all that - which means that if I change something on the dialog I can break any other thing quite easily. The idea of this patch series is to make it harder to break user settings and the settings dialog. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
9 lines
No EOL
327 B
CMake
9 lines
No EOL
327 B
CMake
# the profile widget
|
|
set(SUBSURFACE_PREFERENCES_LIB_SRCS
|
|
abstractpreferenceswidget.cpp
|
|
)
|
|
|
|
source_group("Subsurface Preferences" FILES ${SUBSURFACE_PREFERENCES_LIB_SRCS})
|
|
|
|
add_library(subsurface_desktop_preferences STATIC ${SUBSURFACE_PREFERENCES_LIB_SRCS})
|
|
target_link_libraries(subsurface_desktop_preferences ${QT_LIBRARIES}) |