mirror of
				https://github.com/gnss-sdr/gnss-sdr
				synced 2025-10-30 23:03:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			167 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			167 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
 | |
| # This file is part of GNSS-SDR.
 | |
| #
 | |
| # SPDX-FileCopyrightText: 2011-2025 C. Fernandez-Prades cfernandez(at)cttc.es
 | |
| # SPDX-License-Identifier: BSD-3-Clause
 | |
| 
 | |
| # FindMATIO
 | |
| #
 | |
| # Try to find MATIO library
 | |
| #
 | |
| # Once done this will define:
 | |
| #
 | |
| #  MATIO_FOUND - True if MATIO found.
 | |
| #  MATIO_LIBRARIES - MATIO libraries.
 | |
| #  MATIO_INCLUDE_DIRS - where to find matio.h, etc..
 | |
| #  MATIO_VERSION_STRING - version number as a string (e.g.: "1.3.4")
 | |
| #
 | |
| # Provides the following imported target:
 | |
| # Matio::matio
 | |
| #
 | |
| #=============================================================================
 | |
| # Copyright 2015 Avtech Scientific <http://avtechscientific.com>
 | |
| #
 | |
| # Redistribution and use in source and binary forms, with or without
 | |
| # modification, are permitted provided that the following conditions
 | |
| # are met:
 | |
| #
 | |
| # * Redistributions of source code must retain the above copyright
 | |
| #   notice, this list of conditions and the following disclaimer.
 | |
| #
 | |
| # * 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.
 | |
| #
 | |
| # * Neither the names of Kitware, Inc., the Insight Software Consortium,
 | |
| #   nor the names of their contributors may be used to endorse or promote
 | |
| #   products derived from this software without specific prior written
 | |
| #   permission.
 | |
| #
 | |
| # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | |
| # "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 THE COPYRIGHT
 | |
| # HOLDER OR 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.
 | |
| #=============================================================================
 | |
| #
 | |
| 
 | |
| if(NOT COMMAND feature_summary)
 | |
|     include(FeatureSummary)
 | |
| endif()
 | |
| 
 | |
| if(NOT GNSSSDR_LIB_PATHS)
 | |
|     include(GnsssdrFindPaths)
 | |
| endif()
 | |
| 
 | |
| if(NOT MATIO_ROOT)
 | |
|     set(MATIO_ROOT_USER_DEFINED /usr)
 | |
| else()
 | |
|     set(MATIO_ROOT_USER_DEFINED ${MATIO_ROOT})
 | |
| endif()
 | |
| if(DEFINED ENV{MATIO_ROOT})
 | |
|     set(MATIO_ROOT_USER_DEFINED
 | |
|         ${MATIO_ROOT_USER_DEFINED}
 | |
|         $ENV{MATIO_ROOT}
 | |
|     )
 | |
| endif()
 | |
| 
 | |
| # Look for the header file.
 | |
| find_path(MATIO_INCLUDE_DIR
 | |
|     NAMES matio.h
 | |
|     PATHS
 | |
|         ${MATIO_ROOT_USER_DEFINED}/include
 | |
|         ${GNSSSDR_INCLUDE_PATHS}
 | |
|         ${VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/include
 | |
|     DOC "The MATIO include directory"
 | |
| )
 | |
| 
 | |
| # Look for the library.
 | |
| find_library(MATIO_LIBRARY
 | |
|     NAMES matio libmatio
 | |
|     PATHS
 | |
|       ${MATIO_ROOT_USER_DEFINED}/lib
 | |
|       ${MATIO_ROOT_USER_DEFINED}/lib64
 | |
|       ${GNSSSDR_LIB_PATHS}
 | |
|       ${VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/lib
 | |
|     DOC "The MATIO library"
 | |
| )
 | |
| 
 | |
| if(MATIO_INCLUDE_DIR)
 | |
|     # ---------------------------------------------------
 | |
|     #  Extract version information from MATIO
 | |
|     # ---------------------------------------------------
 | |
| 
 | |
|     # If the file is missing, set all values to 0
 | |
|     set(MATIO_MAJOR_VERSION 0)
 | |
|     set(MATIO_MINOR_VERSION 0)
 | |
|     set(MATIO_RELEASE_LEVEL 0)
 | |
| 
 | |
|     # new versions of MATIO have `matio_pubconf.h`
 | |
|     if(EXISTS ${MATIO_INCLUDE_DIR}/matio_pubconf.h)
 | |
|         set(MATIO_CONFIG_FILE "matio_pubconf.h")
 | |
|     else()
 | |
|         set(MATIO_CONFIG_FILE "matioConfig.h")
 | |
|     endif()
 | |
| 
 | |
|     if(MATIO_CONFIG_FILE)
 | |
|         # Read and parse MATIO config header file for version number
 | |
|         file(STRINGS "${MATIO_INCLUDE_DIR}/${MATIO_CONFIG_FILE}" _matio_HEADER_CONTENTS REGEX "#define MATIO_((MAJOR|MINOR)_VERSION)|(RELEASE_LEVEL) ")
 | |
| 
 | |
|         foreach(line ${_matio_HEADER_CONTENTS})
 | |
|             if(line MATCHES "#define ([A-Z_]+) ([0-9]+)")
 | |
|                 set("${CMAKE_MATCH_1}" "${CMAKE_MATCH_2}")
 | |
|             endif()
 | |
|         endforeach()
 | |
| 
 | |
|         unset(_matio_HEADER_CONTENTS)
 | |
|     endif()
 | |
| 
 | |
|     set(MATIO_VERSION_STRING "${MATIO_MAJOR_VERSION}.${MATIO_MINOR_VERSION}.${MATIO_RELEASE_LEVEL}")
 | |
| endif()
 | |
| 
 | |
| mark_as_advanced(MATIO_INCLUDE_DIR MATIO_LIBRARY)
 | |
| 
 | |
| # handle the QUIETLY and REQUIRED arguments and set MATIO_FOUND to TRUE if
 | |
| # all listed variables are TRUE
 | |
| include(FindPackageHandleStandardArgs)
 | |
| find_package_handle_standard_args(MATIO REQUIRED_VARS MATIO_LIBRARY MATIO_INCLUDE_DIR VERSION_VAR MATIO_VERSION_STRING)
 | |
| 
 | |
| if(MATIO_FOUND)
 | |
|   set(MATIO_LIBRARIES ${MATIO_LIBRARY})
 | |
|   set(MATIO_INCLUDE_DIRS ${MATIO_INCLUDE_DIR})
 | |
| else()
 | |
|   set(MATIO_LIBRARIES)
 | |
|   set(MATIO_INCLUDE_DIRS)
 | |
| endif()
 | |
| 
 | |
| if(MATIO_FOUND AND MATIO_VERSION_STRING)
 | |
|     set_package_properties(MATIO PROPERTIES
 | |
|         DESCRIPTION "MATLAB MAT File I/O Library (found: v${MATIO_VERSION_STRING})"
 | |
|     )
 | |
| else()
 | |
|     set_package_properties(MATIO PROPERTIES
 | |
|         DESCRIPTION "MATLAB MAT File I/O Library"
 | |
|     )
 | |
| endif()
 | |
| 
 | |
| set_package_properties(MATIO PROPERTIES
 | |
|     URL "https://github.com/tbeu/matio"
 | |
| )
 | |
| 
 | |
| if(MATIO_FOUND AND NOT TARGET Matio::matio)
 | |
|     add_library(Matio::matio SHARED IMPORTED)
 | |
|     set_target_properties(Matio::matio PROPERTIES
 | |
|         IMPORTED_LINK_INTERFACE_LANGUAGES "CXX"
 | |
|         IMPORTED_LOCATION "${MATIO_LIBRARY}"
 | |
|         INTERFACE_INCLUDE_DIRECTORIES "${MATIO_INCLUDE_DIR}"
 | |
|         INTERFACE_LINK_LIBRARIES "${MATIO_LIBRARY}"
 | |
|         IMPORTED_IMPLIB "${MATIO_LIBRARY}"
 | |
|     )
 | |
| endif()
 | 
