~ubuntu-branches/ubuntu/wily/box2d/wily

« back to all changes in this revision

Viewing changes to Box2D/Box2D/Box2DConfig.cmake.in

  • Committer: Package Import Robot
  • Author(s): Markus Koschany
  • Date: 2014-05-30 18:42:02 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140530184202-hosw11agojg02ac3
Tags: 2.3.1+ds-1
* Imported Upstream version 2.3.1+ds.
* Fix debian/watch to determine new releases by parsing
  the SVN tags of upstream's version control system.
* Update get-orig-source target for new release.
* dh_strip override: Replace $VER variable with 2.3.0 string.
* debian/copyright: Add new Public Domain and Apache 2.0 license.
* libbox2d-dev.install:
  - Install *.cmake files in /usr/lib/$(DEB_HOST_MULTIARCH)/cmake/Box2D.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#                                               -*- cmake -*-
 
2
#
 
3
#  Box2dConfig.cmake(.in)
 
4
#
 
5
 
 
6
# Use the following variables to compile and link against Box2d:
 
7
#  BOX2D_FOUND          - True if Box2d was found on your system
 
8
#  BOX2D_USE_FILE       - The file making Box2d usable
 
9
#  BOX2D_DEFINITIONS    - Definitions needed to build with Box2d
 
10
#  BOX2D_INCLUDE_DIR    - Box2d headers location
 
11
#  BOX2D_INCLUDE_DIRS   - List of directories where Box2d header file are
 
12
#  BOX2D_LIBRARY        - Library name
 
13
#  BOX2D_LIBRARIES      - List of libraries to link against
 
14
#  BOX2D_LIBRARY_DIRS   - List of directories containing Box2d libraries
 
15
#  BOX2D_ROOT_DIR       - The base directory of Box2d
 
16
#  BOX2D_VERSION_STRING - A human-readable string containing the version
 
17
 
 
18
set ( BOX2D_FOUND 1 )
 
19
set ( BOX2D_USE_FILE     "@BOX2D_USE_FILE@" )
 
20
 
 
21
set ( BOX2D_DEFINITIONS  "@BOX2D_DEFINITIONS@" )
 
22
set ( BOX2D_INCLUDE_DIR  "@BOX2D_INCLUDE_DIR@" )
 
23
set ( Box2D_INCLUDE_DIRS "@BOX2D_INCLUDE_DIRS@" ) # deprecated
 
24
set ( BOX2D_INCLUDE_DIRS "@BOX2D_INCLUDE_DIRS@" )
 
25
set ( BOX2D_LIBRARY      "@BOX2D_LIBRARY@" )
 
26
set ( BOX2D_LIBRARIES    "@BOX2D_LIBRARIES@" )
 
27
set ( BOX2D_LIBRARY_DIRS "@BOX2D_LIBRARY_DIRS@" )
 
28
set ( BOX2D_ROOT_DIR     "@CMAKE_INSTALL_PREFIX@" )
 
29
 
 
30
set ( BOX2D_VERSION_STRING "@BOX2D_VERSION@" )
 
31