~cairo-dock-team/ubuntu/precise/cairo-dock-plug-ins/3.0.0.0beta1

« back to all changes in this revision

Viewing changes to Messaging-Menu/src/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Matthieu Baerts (matttbe)
  • Date: 2011-04-20 20:46:51 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20110420204651-ftnpzesj6uc7qeul
Tags: 2.3.0~1-0ubuntu1
* New Upstream Version (LP: #723995)
* Upstream short ChangeLog (since 2.3.0~0rc1):
 - Updated translations
 - Updated the integration of the new versions of kwin and compiz
    (Switcher, ShowDesktop, etc.)
 - Removed a lot of useless g_print
 - Updated a few plug-ins to fit with the new version of the API (gldit)
 - Fixed a few bugs
 - Updated MeMenu, MessagingMenu and Status-Notifier to works
    with the latest version of dbusmenu, etc.
* Switch to dpkg-source 3.0 (quilt) format
* debian/cairo-dock-plug-ins.install:
 - Added new files (interfaces for python, ruby, vala and mono)
* debian/control:
 - Added new dependences for new applets (sensors and zeitgeist)
    and new interfaces (python, valac, ruby and mono)
 - Updated the version of cairo-dock build-dependences
* debian/rules:
 - Added a new CMake flag to install python interface in debian/tmp
* Updated debian/watch

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
add_definitions (-DMY_APPLET_GETTEXT_DOMAIN="${GETTEXT_MESSAGING_MENU}")
22
22
add_definitions (-DMY_APPLET_DOCK_VERSION="${dock_version}")
23
23
add_definitions (-DMY_APPLET_ICON_FILE="icon.svg")
 
24
add_definitions (-DINDICATOR_OLD_NAMES=${INDICATOR_OLD_NAMES})
24
25
### uncomment the following line to allow multi-instance applet.
25
26
#add_definitions (-DCD_APPLET_MULTI_INSTANCE="1")
26
27
### uncomment the following line to allow extended OpenGL drawing.
29
30
include_directories (
30
31
        ${PACKAGE_INCLUDE_DIRS}
31
32
        ${DBUSMENU_INCLUDE_DIRS}
 
33
        ${DBUSMENU_GTK_INCLUDE_DIRS}
32
34
        ${INDICATOR_APPLET_INCLUDE_DIRS}
33
35
        ${CMAKE_SOURCE_DIR}/Indicator-applet)
34
36
 
35
37
link_directories (
36
38
        ${PACKAGE_LIBRARY_DIRS}
37
39
        ${DBUSMENU_LIBRARY_DIRS}
 
40
        ${DBUSMENU_GTK_LIBRARY_DIRS}
38
41
        ${INDICATOR_APPLET_LIBRARY_DIRS}
39
42
        ${CMAKE_SOURCE_DIR}/Indicator-applet)
40
43
 
41
44
target_link_libraries (${PACKAGE_MESSAGING_MENU}
42
45
        ${PACKAGE_LIBRARIES}
43
46
        ${DBUSMENU_LIBRARIES}
 
47
        ${DBUSMENU_GTK_LIBRARIES}
44
48
        ${INDICATOR_APPLET_LIBRARIES}
45
49
        indicator-applet)
46
50
########### install files ###############