/usr/lib/Teem-1.11.0/TeemConfig.cmake is in libteem-dev 1.11.0~svn6057-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | #
# Teem: Tools to process and visualize scientific data and images
# Copyright (C) 2013, 2012, 2011, 2010, 2009 University of Chicago
# Copyright (C) 2008, 2007, 2006, 2005 Gordon Kindlmann
# Copyright (C) 2004, 2003, 2002, 2001, 2000, 1999, 1998 University of Utah
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
# (LGPL) as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
# The terms of redistributing and/or modifying this software also
# include exceptions to the LGPL that facilitate static linking.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
#-----------------------------------------------------------------------------
#
# TeemConfig.cmake - Teem CMake configuration file for external projects.
#
# This file is configured by Teem and used by the TeemUse.cmake module
# to load Teem's settings for an external project.
# The directory of TeemConfig.cmake is, by definition, Teem_DIR.
# (this_dir == Teem_DIR)
#
GET_FILENAME_COMPONENT(this_dir "${CMAKE_CURRENT_LIST_FILE}" PATH)
GET_FILENAME_COMPONENT(Teem_ROOT_DIR "${this_dir}/../.." ABSOLUTE)
# CMake files required to build client applications that use Teem.
SET(Teem_BUILD_SETTINGS_FILE "${Teem_ROOT_DIR}/lib/Teem-1.11.0/TeemBuildSettings.cmake")
SET(Teem_USE_FILE "${Teem_ROOT_DIR}/lib/Teem-1.11.0/TeemUse.cmake")
# The Teem directories.
SET(Teem_EXECUTABLE_DIRS "${Teem_ROOT_DIR}/bin")
SET(Teem_LIBRARY_DIRS "${Teem_ROOT_DIR}/lib/Teem-1.11.0")
SET(Teem_INCLUDE_DIRS "${Teem_ROOT_DIR}/include")
# The Teem libraries.
SET(Teem_LIBRARIES "teem")
# The C flags added by Teem to the cmake-configured flags.
SET(Teem_REQUIRED_C_FLAGS "")
# The Teem version number
SET(Teem_VERSION_MAJOR "1")
SET(Teem_VERSION_MINOR "11")
SET(Teem_VERSION_PATCH "0")
# Is Teem using shared libraries?
SET(Teem_BUILD_SHARED_LIBS "ON")
# The list of tools in teem
SET(Teem_TOOLS "")
# The Teem library dependencies.
IF(NOT Teem_NO_LIBRARY_DEPENDS)
INCLUDE("${Teem_ROOT_DIR}/lib/Teem-1.11.0/TeemLibraryDepends.cmake")
ENDIF(NOT Teem_NO_LIBRARY_DEPENDS)
|