[svn-r19330] Description:
Bring r19109:19328 from trunk to revise_chunks branch.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
This commit is contained in:
49
config/cmake/hdf5-config.cmake.build.in
Normal file
49
config/cmake/hdf5-config.cmake.build.in
Normal file
@@ -0,0 +1,49 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# HDF5 Config file for compiling against hdf5 build directory
|
||||
#-----------------------------------------------------------------------------
|
||||
GET_FILENAME_COMPONENT (SELF_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# User Options
|
||||
#-----------------------------------------------------------------------------
|
||||
SET (HDF5_ENABLE_PARALLEL @HDF5_ENABLE_PARALLEL@)
|
||||
SET (HDF5_BUILD_FORTRAN @HDF5_BUILD_FORTRAN@)
|
||||
SET (HDF5_BUILD_CPP_LIB @HDF5_BUILD_CPP_LIB@)
|
||||
SET (HDF5_BUILD_TOOLS @HDF5_BUILD_TOOLS@)
|
||||
SET (HDF5_BUILD_HL_LIB @HDF5_BUILD_HL_LIB@)
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Directories
|
||||
#-----------------------------------------------------------------------------
|
||||
SET (HDF5_INCLUDE_DIR "@HDF5_INCLUDES_BUILD_TIME@")
|
||||
|
||||
IF (HDF5_BUILD_FORTRAN)
|
||||
SET (HDF5_INCLUDE_DIR_FORTRAN "@CMAKE_Fortran_MODULE_DIRECTORY@" )
|
||||
ENDIF (HDF5_BUILD_FORTRAN)
|
||||
|
||||
IF (HDF5_BUILD_CPP_LIB)
|
||||
SET (HDF5_INCLUDE_DIR_CPP ${HDF5_INCLUDE_DIR} )
|
||||
ENDIF (HDF5_BUILD_CPP_LIB)
|
||||
|
||||
IF (HDF5_BUILD_HL_LIB)
|
||||
SET (HDF5_INCLUDE_DIR_HL ${HDF5_INCLUDE_DIR} )
|
||||
ENDIF (HDF5_BUILD_HL_LIB)
|
||||
|
||||
IF (HDF5_BUILD_TOOLS)
|
||||
SET (HDF5_INCLUDE_DIR_TOOLS ${HDF5_INCLUDE_DIR} )
|
||||
ENDIF (HDF5_BUILD_TOOLS)
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Version Strings
|
||||
#-----------------------------------------------------------------------------
|
||||
SET (HDF5_VERSION_STRING @HDF5_VERSION_STRING@)
|
||||
SET (HDF5_VERSION_MAJOR @HDF5_VERSION_MAJOR@)
|
||||
SET (HDF5_VERSION_MINOR @HDF5_VERSION_MINOR@)
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Don't include targets if this file is being picked up by another
|
||||
# project which has already build hdf5 as a subproject
|
||||
#-----------------------------------------------------------------------------
|
||||
IF (NOT TARGET "hdf5")
|
||||
INCLUDE (${SELF_DIR}/hdf5-targets.cmake)
|
||||
ENDIF (NOT TARGET "hdf5")
|
||||
Reference in New Issue
Block a user