~didrocks/cairo-dock-plug-ins/fix-abi-transition

« back to all changes in this revision

Viewing changes to Indicator-applet/CMakeLists.txt

  • Committer: matttbe
  • Date: 2010-08-07 01:43:25 UTC
  • Revision ID: matttbe@gmail.com-20100807014325-36tmlrc8n1rrksk5
* New Upstream Version (LP: #614625)
* debian/rules:
 - Autotools has been replaced by CMake
 - cdbs is now used.
* debian/copyright:
 - Updated with the new applets
* debian/control:
 - Autotools has been replaced by CMake
 - Added libcurl4-gnutls-dev, libindicator-dev, libdbusmenu-glib-dev
   libido-0.1-dev, libical-dev, libdbusmenu-gtk-dev as Build-deps
 - Bump Standard-Version to 3.9.1
 - Wget is required for dnd2share applet
* debian/cairo-dock-plug-ins*.install:
 - All sonames are now installed into lib32 or lib64 (lib*)
* Fixed a few bugs on LP:
 - LP: #483963, LP: #485159, LP: #500677, LP: #500979
 - LP: #521531, LP: #519915, LP: #526138, LP: #531317
 - LP: #531319, LP: #537115, LP: #537943, LP: #538637
 - More details on the 'ChangeLog' file

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
SET(impl_SRCS
 
3
        indicator-applet.c                      indicator-applet.h
 
4
)
 
5
 
 
6
add_library(indicator-applet STATIC ${impl_SRCS})
 
7
 
 
8
# Needed for amd64 architecture
 
9
add_definitions (-fPIC)
 
10
 
 
11
link_directories(
 
12
        ${PACKAGE_LIBRARY_DIRS}
 
13
        ${DBUSMENU_LIBRARY_DIRS}
 
14
        ${INDICATOR_APPLET_LIBRARY_DIRS})
 
15
 
 
16
include_directories(
 
17
        ${PACKAGE_INCLUDE_DIRS}
 
18
        ${DBUSMENU_INCLUDE_DIRS}
 
19
        ${INDICATOR_APPLET_INCLUDE_DIRS})
 
20
 
 
21
########### install files ###############