mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
1d2d046c0f
Simple port of the default preferences to the new preferences structure. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
24 lines
738 B
CMake
24 lines
738 B
CMake
# the profile widget
|
|
include_directories(.
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_BINARY_DIR}
|
|
)
|
|
|
|
file(GLOB SUBSURFACE_PREFERENCES_UI *.ui)
|
|
qt5_wrap_ui(SUBSURFACE_PREFERENCES_UI_HDRS ${SUBSURFACE_PREFERENCES_UI})
|
|
|
|
source_group("Subsurface Interface Files" FILES ${SUBSURFACE_PREFERENCES_UI})
|
|
|
|
set(SUBSURFACE_PREFERENCES_LIB_SRCS
|
|
abstractpreferenceswidget.cpp
|
|
preferencesdialog.cpp
|
|
preferences_language.cpp
|
|
preferences_georeference.cpp
|
|
preferences_defaults.cpp
|
|
)
|
|
|
|
source_group("Subsurface Preferences" FILES ${SUBSURFACE_PREFERENCES_LIB_SRCS})
|
|
|
|
add_library(subsurface_desktop_preferences STATIC ${SUBSURFACE_PREFERENCES_LIB_SRCS} ${SUBSURFACE_PREFERENCES_UI_HDRS})
|
|
target_link_libraries(subsurface_desktop_preferences ${QT_LIBRARIES})
|
|
|