~ubuntu-branches/ubuntu/karmic/rosegarden/karmic

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-05-02 00:33:44 UTC
  • mfrom: (1.1.7 upstream) (6.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080502003344-67vbfhgqx2yl0ksi
Tags: 1:1.7.0-1ubuntu1
* Merge from Debian unstable. (LP: #225849) Remaining Ubuntu changes:
  - Add usr/share/doc/kde/HTML to rosegarden-data, to provide online
    help documentation.
  - Change fftw3-dev to libfftw3-dev.
  - Update maintainer field as per spec.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Rosegarden
 
2
# A MIDI and audio sequencer and musical notation editor.
 
3
#
 
4
# This program is Copyright 2000-2008
 
5
#     Guillaume Laurent   <glaurent@telegraph-road.org>,
 
6
#     Chris Cannam        <cannam@all-day-breakfast.com>,
 
7
#     Richard Bown        <richard.bown@ferventsoftware.com>
 
8
#
 
9
# The moral rights of Guillaume Laurent, Chris Cannam, and Richard
 
10
# Bown to claim authorship of this work have been asserted.
 
11
#
 
12
# This file is Copyright 2006-2008
 
13
#     Pedro Lopez-Cabanillas <plcl@users.sourceforge.net>
 
14
#
 
15
# Other copyrights also apply to some parts of this work.  Please
 
16
# see the AUTHORS file and individual file headers for details.
 
17
#
 
18
# This program is free software; you can redistribute it and/or
 
19
# modify it under the terms of the GNU General Public License as
 
20
# published by the Free Software Foundation; either version 2 of the
 
21
# License, or (at your option) any later version.  See the file
 
22
# COPYING included with this distribution for more information.
 
23
 
1
24
# The name of our project is "ROSEGARDEN". CMakeLists files in this project can
2
25
# refer to the root source directory of the project as ${ROSEGARDEN_SOURCE_DIR} 
3
26
# and to the root binary directory of the project as ${ROSEGARDEN_BINARY_DIR}
33
56
 
34
57
# Rosegarden version string
35
58
SET (VERSION_MAJOR "1")
36
 
SET (VERSION_MINOR "6")
37
 
SET (VERSION_PATCH "1")
 
59
SET (VERSION_MINOR "7")
 
60
SET (VERSION_PATCH "0")
38
61
# comment out the next line for a public release
39
 
# SET (VERSION_SUFFIX "")
 
62
#SET (VERSION_SUFFIX "svn")
40
63
SET (VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
41
64
IF(VERSION_SUFFIX)
42
65
   SET (VERSION "${VERSION}-${VERSION_SUFFIX}")
256
279
    FIND_PACKAGE(PCHSupport)
257
280
    IF(PCHSupport_FOUND)
258
281
        SET(USE_PCH TRUE)
 
282
        ADD_DEFINITIONS(-DUSE_PCH)
259
283
        MESSAGE(STATUS "Enabling precompiled headers for GCC ${gcc_compiler_version}") 
260
284
    ENDIF(PCHSupport_FOUND)
261
285
ENDIF(WANT_PCH)