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
|
# ***************************************************************************
# * *
# * Copyright : (C) 2010 The University of Toronto *
# * email : netterfield@astro.utoronto.ca *
# * *
# * Copyright : (C) 2010 Peter Kümmel *
# * email : syntheticpp@gmx.net *
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the GNU General Public License as published by *
# * the Free Software Foundation; either version 2 of the License, or *
# * (at your option) any later version. *
# * *
# ***************************************************************************
# copied from FindGsl.cmake
if(NOT MATIO_INCLUDEDIR)
if(NOT kst_cross)
include(FindPkgConfig)
pkg_check_modules(PKGMATIO QUIET matio)
endif()
if(NOT PKGMATIO_LIBRARIES)
set(PKGMATIO_LIBRARIES matio)
if (UNIX)
set(PKGMATIO_LIBRARIES ${PKGMATIO_LIBRARIES})
endif()
endif()
set(MATIO_INCLUDEDIR MATIO_INCLUDEDIR-NOTFOUND CACHE STRING "" FORCE)
find_path(MATIO_INCLUDEDIR matio.h
HINTS
ENV MATIO_DIR
PATH_SUFFIXES include
PATHS ${kst_3rdparty_dir} ${PKGMATIO_INCLUDEDIR})
set(MATIO_LIBRARY_LIST)
if(kst_3rdparty_dir)
list(APPEND PKGMATIO_LIBRARIES zlibstatic)
endif()
foreach(it ${PKGMATIO_LIBRARIES})
set(lib lib-NOTFOUND CACHE STRING "" FORCE)
FIND_LIBRARY(lib ${it}
HINTS
ENV MATIO_DIR
PATH_SUFFIXES lib
PATHS ${kst_3rdparty_dir} ${PKGMATIO_LIBRARY_DIRS})
list(APPEND MATIO_LIBRARY_LIST ${lib})
endforeach()
set(MATIO_LIBRARIES ${MATIO_LIBRARY_LIST} CACHE STRING "" FORCE)
endif()
if(MATIO_INCLUDEDIR AND MATIO_LIBRARIES)
set(MATIO_INCLUDE_DIR ${MATIO_INCLUDEDIR} ${MATIO_INCLUDEDIR}/..)
set(matio 1)
message(STATUS "Found matio (for Matlab .mat support):")
message(STATUS " includes : ${MATIO_INCLUDE_DIR}")
message(STATUS " libraries: ${MATIO_LIBRARIES}")
else()
message(STATUS "Not found: matio, set MATIO_DIR")
endif()
message(STATUS "")
|