2009-08-22 08:24:06 +00:00
|
|
|
include_directories( ${KDEBASE_WORKSPACE_SOURCE_DIR}/kwin/lib )
|
|
|
|
|
|
|
|
|
2009-09-09 00:55:55 +00:00
|
|
|
set(kwin_nitrogen_config_PART_SRCS
|
|
|
|
config.cpp
|
2009-08-22 08:24:06 +00:00
|
|
|
itemmodel.cpp
|
|
|
|
../nitrogenconfiguration.cpp
|
|
|
|
../nitrogenexception.cpp
|
|
|
|
../nitrogenexceptionlist.cpp
|
2009-09-09 00:55:55 +00:00
|
|
|
nitrogenconfigurationui.cpp
|
2009-09-13 16:43:26 +00:00
|
|
|
nitrogendetectwidget.cpp
|
2009-08-22 08:24:06 +00:00
|
|
|
nitrogenexceptiondialog.cpp
|
2009-08-30 17:53:51 +00:00
|
|
|
nitrogenexceptionlistwidget.cpp
|
2009-08-22 08:24:06 +00:00
|
|
|
nitrogenexceptionmodel.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
kde4_add_plugin(kwin_nitrogen_config ${kwin_nitrogen_config_PART_SRCS})
|
|
|
|
|
|
|
|
target_link_libraries(
|
2009-09-09 00:55:55 +00:00
|
|
|
kwin_nitrogen_config
|
2009-08-22 08:24:06 +00:00
|
|
|
${KDE4_KDEUI_LIBS}
|
|
|
|
${QT_QTGUI_LIBRARY}
|
2009-09-13 16:43:26 +00:00
|
|
|
${X11_X11_LIB}
|
2009-08-22 08:24:06 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
install(TARGETS kwin_nitrogen_config DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|