mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
29 lines
431 B
CMake
29 lines
431 B
CMake
|
|
set( themes_RC
|
|
qtcde.themerc
|
|
qtcleanlooks.themerc
|
|
qtmotif.themerc
|
|
qtplastique.themerc
|
|
qtwindows.themerc
|
|
)
|
|
|
|
if (Q_WS_X11)
|
|
set( themes_RC ${themes_RC}
|
|
qtgtk.themerc
|
|
)
|
|
endif (Q_WS_X11)
|
|
|
|
if (APPLE)
|
|
set( themes_RC ${themes_RC}
|
|
qtmacintosh.themerc
|
|
)
|
|
endif (APPLE)
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install( FILES ${themes_RC} DESTINATION ${KDE4_DATA_INSTALL_DIR}/kstyle/themes )
|
|
|
|
|
|
|
|
|