~ubuntu-branches/ubuntu/intrepid/kdesdk/intrepid-updates

« back to all changes in this revision

Viewing changes to kate/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2008-05-28 10:11:43 UTC
  • mto: This revision was merged to the branch mainline in revision 37.
  • Revision ID: james.westby@ubuntu.com-20080528101143-gzc3styjz1b70zxu
Tags: upstream-4.0.80
ImportĀ upstreamĀ versionĀ 4.0.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project(kate)
 
2
 
 
3
include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/interfaces)
 
4
macro_optional_find_package(Plasma)
 
5
macro_bool_to_01(PLASMA_FOUND HAVE_PLASMA)
 
6
 
 
7
add_subdirectory( interfaces/kate )
 
8
add_subdirectory( app )
 
9
add_subdirectory( plugins )
 
10
add_subdirectory( data )
 
11
add_subdirectory( pics )
 
12
 
 
13
macro_log_feature(PLASMA_FOUND "Plasma" "Plasma is the KDE4 desktop" "http://plasma.kde.org" FALSE "" "Provides a Kate Plasmoid")
 
14
if( PLASMA_FOUND )
 
15
   add_subdirectory(plasma)
 
16
endif(PLASMA_FOUND)
 
17
 
 
18
install( FILES kate_export.h DESTINATION ${INCLUDE_INSTALL_DIR} )