Cloned SEACAS for EXODUS library with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

314 lines
11 KiB

2 years ago
# -*- mode: cmake -*-
# @HEADER
# ************************************************************************
#
# TriBITS: Tribal Build, Integrate, and Test System
# Copyright 2016, 2021 Sandia Corporation
#
# Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
# the U.S. Government retains certain rights in this software.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the Corporation nor the names of the
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# ************************************************************************
# @HEADER
#
# Based on the MSTK CGNS Find Module
#
# Usage:
# Control the search through CGNS_DIR or setting environment variable
# CGNS_ROOT to the CGNS installation prefix.
#
# This module does not search default paths!
#
# Following variables are set:
# CGNS_FOUND (BOOL) Flag indicating if CGNS was found
# CGNS_INCLUDE_DIR (PATH) Path to the CGNS include file
# CGNS_INCLUDE_DIRS (LIST) List of all required include files
# CGNS_LIBRARY_DIR (PATH) Path to the CGNS library
# CGNS_LIBRARY (FILE) CGNS library
# CGNS_LIBRARIES (LIST) List of all required CGNS libraries
#
# #############################################################################
# Standard CMake modules see CMAKE_ROOT/Modules
include(FindPackageHandleStandardArgs)
# MSTK CMake functions see <root>/cmake/modules for source
include(AddPackageDependency)
# If CGNS_ROOT was defined in the environment, use it.
# Definition from the command line will take precedence.
if (NOT CGNS_ROOT AND NOT $ENV{CGNS_ROOT} STREQUAL "")
set(CGNS_ROOT $ENV{CGNS_ROOT})
endif()
# CGNS_DIR is DEPRECATED WARN THE USER if it is set
if (NOT CGNS_ROOT AND CGNS_DIR )
message(WARNING "The configuration parameter CGNS_DIR is deprecated."
" Please use CGNS_ROOT instead to define the CGNS installation")
set(CGNS_ROOT ${CGNS_DIR})
endif()
# Add the usual paths for searching using the CGNS_ROOT variable
if (CGNS_ROOT)
list(APPEND _cgns_INCLUDE_SEARCH_DIRS
${CGNS_ROOT}/include
${CGNS_ROOT})
list(APPEND _cgns_LIBRARY_SEARCH_DIRS
${CGNS_ROOT}/lib
${CGNS_ROOT})
list(APPEND _cgns_BINARY_SEARCH_DIRS
${CGNS_ROOT}/bin
${CGNS_ROOT})
endif()
if ( CGNS_LIBRARIES AND CGNS_INCLUDE_DIRS )
# Do nothing. Variables are set. No need to search again
else(CGNS_LIBRARIES AND CGNS_INCLUDE_DIRS)
# Cache variables
if(CGNS_ROOT)
set(CGNS_ROOT "${CGNS_ROOT}" CACHE PATH "Path to search for CGNS include and library files")
endif()
if(CGNS_INCLUDE_DIR)
set(CGNS_INCLUDE_DIR "${CGNS_INCLUDE_DIR}" CACHE PATH "Path to search for CGNS include files")
endif()
if(CGNS_LIBRARY_DIR)
set(CGNS_LIBRARY_DIR "${CGNS_LIBRARY_DIR}" CACHE PATH "Path to search for CGNS library files")
endif()
# Search for include files
# Search order preference:
# (1) CGNS_INCLUDE_DIR - check existence of path AND if the include files exist
# (2) CGNS_ROOT/<include>
# (3) Default CMake paths See cmake --html-help=out.html file for more information.
#
set(cgns_inc_names "cgnslib.h")
if (CGNS_INCLUDE_DIR)
if (EXISTS "${CGNS_INCLUDE_DIR}")
find_path(cdf_test_include_path
NAMES ${cgns_inc_names}
HINTS ${CGNS_INCLUDE_DIR}
NO_DEFAULT_PATH)
if(NOT cdf_test_include_path)
message(SEND_ERROR "Can not locate ${cgns_inc_names} in ${CGNS_INCLUDE_DIR}")
endif()
set(CGNS_INCLUDE_DIR "${cdf_test_include_path}")
else()
message(SEND_ERROR "CGNS_INCLUDE_DIR=${CGNS_INCLUDE_DIR} does not exist")
set(CGNS_INCLUDE_DIR "CGNS_INCLUDE_DIR-NOTFOUND")
endif()
else()
set(cgns_inc_suffixes "include")
if(CGNS_ROOT)
if (EXISTS "${CGNS_ROOT}" )
find_path(CGNS_INCLUDE_DIR
NAMES ${cgns_inc_names}
HINTS ${CGNS_ROOT}/include
PATH_SUFFIXES ${cgns_inc_suffixes}
NO_DEFAULT_PATH)
else()
message(SEND_ERROR "CGNS_ROOT=${CGNS_ROOT} does not exist")
set(CGNS_INCLUDE_DIR "CGNS_INCLUDE_DIR-NOTFOUND")
endif()
else()
find_path(CGNS_INCLUDE_DIR
NAMES ${cgns_inc_names}
PATH_SUFFIXES ${cgns_inc_suffixes})
endif()
endif()
if ( NOT CGNS_INCLUDE_DIR )
message(SEND_ERROR "Can not locate CGNS include directory")
endif()
# Search for libraries
# Search order preference:
# (1) CGNS_LIBRARY_DIR - check existence of path AND if the include files exist
# (2) CGNS_ROOT/<lib,Lib>
# (3) Default CMake paths See cmake --html-help=out.html file for more information.
#
if (CGNS_LIBRARY_DIR)
if (EXISTS "${CGNS_LIBRARY_DIR}")
find_library(CGNS_LIBRARY
NAMES cgns
HINTS ${CGNS_LIBRARY_DIR}
NO_DEFAULT_PATH)
else()
message(SEND_ERROR "CGNS_LIBRARY_DIR=${CGNS_LIBRARY_DIR} does not exist")
set(CGNS_LIBRARY "CGNS_LIBRARY-NOTFOUND")
endif()
else()
if(CGNS_ROOT)
if (EXISTS "${CGNS_ROOT}" )
find_library(CGNS_LIBRARY
NAMES cgns
HINTS ${CGNS_ROOT}
PATH_SUFFIXES "lib" "Lib"
NO_DEFAULT_PATH)
else()
message(SEND_ERROR "CGNS_ROOT=${CGNS_ROOT} does not exist")
set(CGNS_LIBRARY "CGNS_LIBRARY-NOTFOUND")
endif()
else()
find_library(CGNS_LIBRARY
NAMES cgns
PATH_SUFFIXES ${cgns_lib_suffixes})
endif()
endif()
if ( NOT CGNS_LIBRARY )
message(SEND_ERROR "Can not locate CGNS library")
endif()
# Define the LIBRARIES and INCLUDE_DORS
set(CGNS_INCLUDE_DIRS ${CGNS_INCLUDE_DIR})
set(CGNS_LIBRARIES ${CGNS_CXX_LIBRARY} ${CGNS_LIBRARY})
endif(CGNS_LIBRARIES AND CGNS_INCLUDE_DIRS )
# Need to find the CGNS types include to check for SCOPING
set(cgns_types_h "${CGNS_INCLUDE_DIR}/cgnstypes.h" )
if (EXISTS ${cgns_types_h})
file(STRINGS "${cgns_types_h}" cg_build_hdf5_string REGEX "^#define CG_BUILD_HDF5")
if ("${cg_build_hdf5_string}" STREQUAL "")
set(cgns_config_h "${CGNS_INCLUDE_DIR}/cgnsconfig.h" )
if (EXISTS ${cgns_config_h})
file(STRINGS "${cgns_config_h}" cg_build_hdf5_string REGEX "^#define CG_BUILD_HDF5")
endif()
endif()
if ("${cg_build_hdf5_string}" STREQUAL "")
message(FATAL_ERROR "CGNS Symbol `CG_BUILD_HDF5` not found in `cgnstypes.h` or `cgnsconfig.h` as required.")
endif()
string(REGEX REPLACE "[^0-1]" "" cg_build_hdf5 "${cg_build_hdf5_string}")
if ( cg_build_hdf5 EQUAL 1 )
message(STATUS "CGNS requires HDF5")
add_package_dependency(CGNS DEPENDS_ON HDF5)
endif()
file(STRINGS "${cgns_types_h}" cg_scoping_string REGEX "^#define CG_BUILD_SCOPE")
string(REGEX REPLACE "[^0-1]" "" cg_scoping "${cg_scoping_string}")
if ( cg_scoping EQUAL 1 )
message(STATUS "CGNS Scoping Enabled")
else()
message(STATUS "CGNS Scoping Not Enabled")
# message(SEND_ERROR "CGNS Scoping *Not* Enabled as Required. Rebuild CGNS library with CGNS_ENABLE_SCOPING defined.")
endif()
else()
message(SEND_ERROR "CGNS: Could not find cgnstypes.h")
message(STATUS "CGNS does not have cgnstypes.h; assuming CGNS depends on HDF5")
add_package_dependency(CGNS DEPENDS_ON HDF5)
endif()
# Search for CGNS tools
set(_cgns_TOOLS cgnscheck cgnsdiff cgnslist cgnscompress cgnsconvert cgnsnames cgnsupdate)
set(CGNS_TOOLS_FOUND)
foreach( tool ${_cgns_TOOLS})
string(TOUPPER "${tool}" tool_uc)
set(_cgns_VAR_NAME CGNS_${tool_uc}_BINARY)
find_program(${_cgns_VAR_NAME}
${tool}
HINTS ${_cgns_BINARY_SEARCH_DIRS}
${_cgns_FIND_OPTIONS})
if (${_cgns_VAR_NAME})
list(APPEND CGNS_TOOLS_FOUND ${tool})
endif()
endforeach()
# Send useful message if everything is found
find_package_handle_standard_args(CGNS DEFAULT_MSG
CGNS_LIBRARIES
CGNS_INCLUDE_DIRS)
# find_package)handle)standard_args should set CGNS_FOUND but it does not!
if ( CGNS_LIBRARIES AND CGNS_INCLUDE_DIRS)
set(CGNS_FOUND TRUE)
else()
set(CGNS_FOUND FALSE)
endif()
# --- Provide a summary of what the module found
if ( NOT CGNS_FIND_QUIETLY )
# Create a not found list
message(STATUS "\tCGNS_INCLUDE_DIRS = ${CGNS_INCLUDE_DIRS}")
message(STATUS "\tCGNS_LIBRARIES = ${CGNS_LIBRARIES}")
message(STATUS "\tCGNS_TOOLS_FOUND = ${CGNS_TOOLS_FOUND}")
endif()
# For compatability with TriBITS:
set(DOCSTR "List of semi-colon separated paths to look for the TPL CGNS")
set(TPL_CGNS_LIBRARIES ${CGNS_LIBRARIES} CACHE PATH ${DOCSTR})
set(TPL_CGNS_INCLUDE_DIRS ${CGNS_INCLUDE_DIRS} CACHE PATH ${DOCSTR})
mark_as_advanced(
CGNS_INCLUDE_DIR
CGNS_INCLUDE_DIRS
CGNS_LIBRARY
CGNS_CXX_LIBRARY
CGNS_LIBRARIES
CGNS_LIBRARY_DIR
)