~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to kscreensaver/krandom_screensaver/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
include_directories( ${KDEBASE_WORKSPACE_SOURCE_DIR}/kscreensaver/libkscreensaver   )
 
3
 
 
4
 
 
5
########### next target ###############
 
6
 
 
7
set(krandom.kss_SRCS random.cpp)
 
8
 
 
9
 
 
10
kde4_add_executable(krandom.kss ${krandom.kss_SRCS})
 
11
 
 
12
target_link_libraries(krandom.kss ${KDE4_KDEUI_LIBS} m)
 
13
if (Q_WS_X11)
 
14
  target_link_libraries(krandom.kss ${X11_X11_LIB})
 
15
endif (Q_WS_X11)
 
16
 
 
17
install(TARGETS krandom.kss ${INSTALL_TARGETS_DEFAULT_ARGS})
 
18
 
 
19
 
 
20
########### install files ###############
 
21
 
 
22
install( FILES krandom.desktop  DESTINATION  ${SERVICES_INSTALL_DIR}/ScreenSavers )
 
23