/usr/lib/cmake/openturns/OpenTURNSConfig.cmake is in libopenturns-dev 1.9-5.
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | # -*- cmake -*-
#
# OpenTURNSConfig.cmake(.in)
#
# Find OpenTURNS includes and libraries
#
# Copyright 2005-2017 Airbus-EDF-IMACS-Phimeca
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# 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
# along with this library. If not, see <http://www.gnu.org/licenses/>.
#
#
# Use the following variables to compile and link against OpenTURNS:
# OPENTURNS_FOUND - True if OpenTURNS was found on your system
# OPENTURNS_USE_FILE - The file making OpenTURNS usable
# OPENTURNS_DEFINITIONS - Definitions needed to build with OpenTURNS
# OPENTURNS_INCLUDE_DIR - Directory where OT.hxx can be found
# OPENTURNS_INCLUDE_DIRS - List of directories of OpenTURNS and it's dependencies
# OPENTURNS_LIBRARY - OpenTURNS library location
# OPENTURNS_LIBRARIES - List of libraries to link against
# OPENTURNS_LIBRARY_DIRS - List of directories containing OpenTURNS' libraries
# OPENTURNS_ROOT_DIR - The base directory of OpenTURNS
# OPENTURNS_VERSION_STRING - A human-readable string containing the version
# OPENTURNS_VERSION_MAJOR - The major version of OpenTURNS
# OPENTURNS_VERSION_MINOR - The minor version of OpenTURNS
# OPENTURNS_VERSION_PATCH - The patch version of OpenTURNS
# OPENTURNS_SWIG_INCLUDE_DIRS - Location of swig interface files
# OPENTURNS_SWIG_DEFINITIONS - Definitions to compile the swig generated source
# OPENTURNS_PYTHON_MODULE_PATH - Path to the python module
####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
####### Any changes to this file will be overwritten by the next CMake run ####
####### The input file was OpenTURNSConfig.cmake.in ########
get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
# Use original install prefix when loaded through a "/usr move"
# cross-prefix symbolic link such as /lib -> /usr/lib.
get_filename_component(_realCurr "${CMAKE_CURRENT_LIST_DIR}" REALPATH)
get_filename_component(_realOrig "/usr/lib/cmake/openturns" REALPATH)
if(_realCurr STREQUAL _realOrig)
set(PACKAGE_PREFIX_DIR "/usr")
endif()
unset(_realOrig)
unset(_realCurr)
macro(set_and_check _var _file)
set(${_var} "${_file}")
if(NOT EXISTS "${_file}")
message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !")
endif()
endmacro()
####################################################################################
set ( OPENTURNS_FOUND 1 )
set_and_check ( OPENTURNS_USE_FILE "${PACKAGE_PREFIX_DIR}/lib/cmake/openturns/UseOpenTURNS.cmake" )
set ( OPENTURNS_DEFINITIONS "" )
set_and_check ( OPENTURNS_INCLUDE_DIR "${PACKAGE_PREFIX_DIR}/include" )
set ( OPENTURNS_INCLUDE_DIRS "${PACKAGE_PREFIX_DIR}/include;${PACKAGE_PREFIX_DIR}/include;${PACKAGE_PREFIX_DIR}/lib/cmake/hmat/../../../include/hmat;${PACKAGE_PREFIX_DIR}/include/libxml2" )
set ( OPENTURNS_LIBRARY "OT" )
set ( OPENTURNS_LIBRARIES "/usr/lib/x86_64-linux-gnu/liblapack.so;/usr/lib/x86_64-linux-gnu/libblas.so;/usr/lib/x86_64-linux-gnu/libtbb.so;/usr/lib/x86_64-linux-gnu/libmuparser.so;hmat-oss;/usr/lib/x86_64-linux-gnu/libxml2.so;-lpthread;/usr/lib/x86_64-linux-gnu/libnlopt.so;OT" )
set ( OPENTURNS_LIBRARY_DIRS "${PACKAGE_PREFIX_DIR}/lib" )
set_and_check ( OPENTURNS_ROOT_DIR "${PACKAGE_PREFIX_DIR}/" )
set ( OPENTURNS_VERSION_STRING "1.9" )
set ( OPENTURNS_VERSION_MAJOR "1" )
set ( OPENTURNS_VERSION_MINOR "9" )
set ( OPENTURNS_VERSION_PATCH "" )
set (OPENTURNS_SWIG_INCLUDE_DIRS "${PACKAGE_PREFIX_DIR}/include/openturns/swig")
set ( OPENTURNS_SWIG_DEFINITIONS "-DSWIG_TYPE_TABLE=openturns" )
set (OPENTURNS_PYTHON3_MODULE_PATH "/usr/lib/python3/dist-packages")
if ("1" STREQUAL "1")
set (HMAT_DIR "/usr/lib/cmake/hmat")
# if CMAKE_FIND_ROOT_PATH is defined and CMAKE_FIND_ROOT_PATH_MODE_PACKAGE set to ONLY
# hardcoded PATHS guesses must be relative to CMAKE_FIND_ROOT_PATH
if (DEFINED CMAKE_FIND_ROOT_PATH)
file (RELATIVE_PATH HMAT_DIR ${CMAKE_FIND_ROOT_PATH} ${HMAT_DIR})
set (HMAT_DIR "/${HMAT_DIR}")
endif ()
find_package (HMAT REQUIRED NO_MODULE PATHS ${HMAT_DIR} NO_DEFAULT_PATH)
endif ()
# CMAKE_CURRENT_LIST_DIR defined since 2.8.3
if(CMAKE_VERSION VERSION_LESS 2.8.3)
get_filename_component (CMAKE_CURRENT_LIST_DIR ${CMAKE_CURRENT_LIST_FILE} PATH)
endif ()
# Our library dependencies (contains definitions for IMPORTED targets)
include("${CMAKE_CURRENT_LIST_DIR}/OpenTURNS-Targets.cmake")
if(CMAKE_VERSION VERSION_LESS 2.8.3)
set(CMAKE_CURRENT_LIST_DIR)
endif ()
|