~ubuntu-branches/ubuntu/lucid/kmess/lucid

« back to all changes in this revision

Viewing changes to contrib/isf-qt/cmake/FindIsfQt.cmake

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2009-12-05 21:19:26 UTC
  • mfrom: (1.1.7 upstream) (0.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20091205211926-r26u8j38kysf6o2p
Tags: 2.0.2-1
* New upstream release 
  - Fixes friendly names (LP: #485640)
* Update Homepage: http://kmess.org
* Add Build-Depends: libphonon-dev | libqt4-phonon-dev (ubuntu friendly)
* kmess.1 fix lintian:hyphen-used-as-minus-sign

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Find LibISF-Qt
 
2
# Find the Ink Serialized Format library and includes
 
3
# This module defines
 
4
#  ISFQT_FOUND       - If false, do not try to use ISF-Qt
 
5
#  ISFQT_INCLUDE_DIR - where to find isfqtdrawing.h and friends
 
6
#  ISFQT_LIBRARIES   - the libraries needed to use ISF-Qt
 
7
#  ISFQT_LIBRARY     - Where to find the ISF-Qt library (generally not used)
 
8
 
 
9
FIND_PATH( ISFQT_INCLUDE_DIR isfqtdrawing.h /usr/include/isf-qt /usr/local/include/isf-qt )
 
10
FIND_LIBRARY( ISFQT_LIBRARY NAMES isf-qt PATH /usr/lib /usr/local/lib )
 
11
 
 
12
# handle the QUIETLY and REQUIRED arguments and set ISFQT_FOUND to TRUE if
 
13
# all listed variables are TRUE
 
14
INCLUDE( FindPackageHandleStandardArgs )
 
15
FIND_PACKAGE_HANDLE_STANDARD_ARGS( ISFQT DEFAULT_MSG ISFQT_LIBRARY ISFQT_INCLUDE_DIR )
 
16
 
 
17
IF( ISFQT_FOUND )
 
18
  SET( ISFQT_LIBRARIES ${ISFQT_LIBRARY} )
 
19
ENDIF( ISFQT_FOUND )