2015-09-17 17:04:27 +00:00
|
|
|
# the profile widget
|
2015-09-17 18:58:26 +00:00
|
|
|
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})
|
|
|
|
|
2015-09-17 17:04:27 +00:00
|
|
|
set(SUBSURFACE_PREFERENCES_LIB_SRCS
|
|
|
|
abstractpreferenceswidget.cpp
|
2015-09-17 20:16:40 +00:00
|
|
|
preferencesdialog.cpp
|
2015-09-17 18:58:26 +00:00
|
|
|
preferences_language.cpp
|
2015-09-17 17:04:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
source_group("Subsurface Preferences" FILES ${SUBSURFACE_PREFERENCES_LIB_SRCS})
|
|
|
|
|
2015-09-17 18:58:26 +00:00
|
|
|
add_library(subsurface_desktop_preferences STATIC ${SUBSURFACE_PREFERENCES_LIB_SRCS} ${SUBSURFACE_PREFERENCES_UI_HDRS})
|
|
|
|
target_link_libraries(subsurface_desktop_preferences ${QT_LIBRARIES})
|
|
|
|
|