~ubuntu-branches/ubuntu/intrepid/kdebluetooth/intrepid-proposed

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2008-08-07 09:49:47 UTC
  • mto: This revision was merged to the branch mainline in revision 56.
  • Revision ID: james.westby@ubuntu.com-20080807094947-pj6q3uxwuv7l844q
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project(kbluetooth4)
 
2
 
 
3
# set version
 
4
set (KBLUETOOTH_VERSION_MAJOR 1)
 
5
set (KBLUETOOTH_VERSION_MINOR 0)
 
6
set (KBLUETOOTH_VERSION_RELEASE 00)
 
7
set (KBLUETOOTH_VERSION "${KBLUETOOTH_VERSION_MAJOR}.${KBLUETOOTH_VERSION_MINOR}.${KBLUETOOTH_VERSION_RELEASE}" )
 
8
set (KBLUETOOTH_VERSION_STRING "${KBLUETOOTH_VERSION} (KBluetooth 1.0)")
 
9
 
 
10
#set (CMAKE_INSTALL_PREFIX /usr)
 
11
SET( QT_USE_QT3SUPPORT TRUE )
 
12
 
 
13
# Find the required Libaries
 
14
find_package(KDE4 REQUIRED)
 
15
find_package(Qt4 REQUIRED)
 
16
include(KDE4Defaults)
 
17
include(MacroLibrary)
 
18
 
 
19
add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
 
20
include_directories(
 
21
   ${CMAKE_SOURCE_DIR}
 
22
   ${CMAKE_BINARY_DIR}
 
23
   ${KDE4_INCLUDES}
 
24
   ${QT_QT3SUPPORT_INCLUDE_DIR}
 
25
    
 
26
   )
 
27
 
 
28
 
 
29
add_subdirectory ( src )