~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/poppler/cmake/modules/FindGDK.cmake

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# - try to find GDK libraries
 
2
# Once done this will define
 
3
#
 
4
#  GDK_FOUND - system has GDK
 
5
#  GDK2_CFLAGS - the GDK CFlags
 
6
#  GDK2_LIBRARIES - Link these to use GDK
 
7
#
 
8
# Copyright 2008-2010 Pino Toscano, <pino@kde.org>
 
9
#
 
10
# Redistribution and use is allowed according to the terms of the BSD license.
 
11
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
 
12
 
 
13
include(FindPackageHandleStandardArgs)
 
14
 
 
15
if (NOT WIN32)
 
16
  find_package(PkgConfig REQUIRED)
 
17
 
 
18
  pkg_check_modules(GDK2 "gdk-2.0")
 
19
 
 
20
  find_package_handle_standard_args(GDK DEFAULT_MSG GDK2_LIBRARIES GDK2_CFLAGS)
 
21
 
 
22
endif(NOT WIN32)