~ubuntu-branches/ubuntu/precise/compizconfig-backend-gconf/precise

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-11-09 18:14:11 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20101109181411-tvnhsoq3regzw59o
Tags: 0.9.2.1-0ubuntu1
* New upstream release
* debian/rules, debian/control:
  - change to cmake and remove autoconf
* debian/control:
  - bump compiz build-dep to 0.9
* debian/patches/02_debug.patch,
  - adapt to new version
* debian/patches/resize_with_right_button:
  - removed, upstream
* debian/rules:
  - add flags to compile in package mode and not in debug mode
* debian/install:
  - install every files (which is just one...)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project (compizconfig-backend-gconf)
 
2
 
 
3
find_package (CompizConfig REQUIRED)
 
4
 
 
5
include (LibCompizConfigCommon)
 
6
 
 
7
compizconfig_backend (gconf PKGDEPS glib-2.0 gconf-2.0)
 
8
 
 
9
# compizconfig-gconf package version number
 
10
# An odd micro number indicates in-progress development.
 
11
# An even micro number indicates a released version.
 
12
set (COMPIZCONFIG_GCONF_VERSION_MAJOR 0)
 
13
set (COMPIZCONFIG_GCONF_VERSION_MINOR 9)
 
14
set (COMPIZCONFIG_GCONF_VERSION_MICRO 2)
 
15
set (COMPIZCONFIG_GCONF_VERSION_MACRO 1)
 
16
set (VERSION ${COMPIZCONFIG_GCONF_VERSION_MAJOR}.${COMPIZCONFIG_GCONF_VERSION_MINOR}.${COMPIZCONFIG_GCONF_VERSION_MICRO}.${COMPIZCONFIG_GCONF_VERSION_MACRO})
 
17
 
 
18
compiz_print_configure_header ("CompizConfig GConf Storage Backend")
 
19
compiz_print_configure_footer ()
 
20
 
 
21
compiz_add_uninstall ()
 
22
compiz_package_generation ("CompizConfig GConf Storage Backend")
 
23
compiz_add_git_dist ()