File: AssimpConfig.cmake.in

package info (click to toggle)
assimp 3.0~dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 12,104 kB
  • sloc: cpp: 103,409; cs: 15,009; ansic: 5,273; python: 1,388; pascal: 337; objc: 121; xml: 100; sh: 86; makefile: 50
file content (21 lines) | stat: -rw-r--r-- 789 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# - Config file for the FooBar package
# It defines the following variables
#  FOOBAR_INCLUDE_DIRS - include directories for FooBar
#  FOOBAR_LIBRARIES    - libraries to link against
#  FOOBAR_EXECUTABLE   - the bar executable

# Compute paths
get_filename_component(FOOBAR_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
if(EXISTS "${FOOBAR_CMAKE_DIR}/CMakeCache.txt")
   # In build tree
   include("${FOOBAR_CMAKE_DIR}/FooBarBuildTreeSettings.cmake")
else()
   set(FOOBAR_INCLUDE_DIRS "${FOOBAR_CMAKE_DIR}/@CONF_REL_INCLUDE_DIR@")
endif()

# Our library dependencies (contains definitions for IMPORTED targets)
include("${FOOBAR_CMAKE_DIR}/FooBarLibraryDepends.cmake")

# These are IMPORTED targets created by FooBarLibraryDepends.cmake
set(FOOBAR_LIBRARIES foo)
set(FOOBAR_EXECUTABLE bar)