mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 11:22:55 +00:00
38 lines
887 B
CMake
38 lines
887 B
CMake
include_directories( ${KDE4_INCLUDES} )
|
|
|
|
set(yakuake_SRCS
|
|
main.cpp
|
|
application.cpp
|
|
mainwindow.cpp
|
|
skin.cpp
|
|
titlebar.cpp
|
|
tabbar.cpp
|
|
sessionstack.cpp
|
|
session.cpp
|
|
terminal.cpp
|
|
splitter.cpp
|
|
firstrundialog.cpp
|
|
visualeventoverlay.cpp
|
|
config/windowsettings.cpp
|
|
config/appearancesettings.cpp
|
|
config/skinlistdelegate.cpp
|
|
firstrundialog.ui
|
|
config/windowsettings.ui
|
|
behaviorsettings.ui
|
|
config/appearancesettings.ui
|
|
)
|
|
|
|
|
|
kde4_add_kcfg_files(yakuake_SRCS config/settings.kcfgc)
|
|
|
|
add_executable(yakuake ${yakuake_SRCS})
|
|
|
|
target_link_libraries(yakuake ${KDE4_KNOTIFYCONFIG_LIBRARY} ${KDE4_KPARTS_LIBS} ${KDE4_KNEWSTUFF3_LIBS})
|
|
|
|
if(Q_WS_X11)
|
|
target_link_libraries(yakuake ${X11_X11_LIB})
|
|
endif(Q_WS_X11)
|
|
|
|
install(TARGETS yakuake ${INSTALL_TARGETS_DEFAULT_ARGS})
|
|
|
|
install(FILES yakuake.knsrc DESTINATION ${CONFIG_INSTALL_DIR})
|