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

« back to all changes in this revision

Viewing changes to libs/ksysguard/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
########### next target ###############
 
3
 
 
4
kde4_no_enable_final( signalplotter )
 
5
 
 
6
if(Q_WS_X11)
 
7
    find_library(X11_XRes_LIB XRes ${X11_LIB_SEARCH_PATH})
 
8
    find_path(X11_XRes_INCLUDE_PATH X11/extensions/XRes.h ${X11_INC_SEARCH_PATH})
 
9
 
 
10
    if(X11_XRes_LIB AND X11_XRes_INCLUDE_PATH)
 
11
        set(X11_XRes_FOUND TRUE)
 
12
    endif(X11_XRes_LIB AND X11_XRes_INCLUDE_PATH)
 
13
endif(Q_WS_X11)
 
14
 
 
15
macro_bool_to_01(X11_XRes_FOUND HAVE_XRES)
 
16
configure_file(config-ksysguard.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-ksysguard.h )
 
17
 
 
18
add_subdirectory( lsofui )
 
19
add_subdirectory( processcore )
 
20
add_subdirectory( processui )
 
21
add_subdirectory( signalplotter )
 
22
add_subdirectory( tests )
 
23
 
 
24
install(DIRECTORY scripts/ DESTINATION ${DATA_INSTALL_DIR}/ksysguard/scripts)
 
25