2019-03-01 17:07:01 +00:00
|
|
|
# (C) Copyright 2011- ECMWF.
|
|
|
|
#
|
|
|
|
# This software is licensed under the terms of the Apache Licence Version 2.0
|
|
|
|
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
# In applying this licence, ECMWF does not waive the privileges and immunities
|
|
|
|
# granted to it by virtue of its status as an intergovernmental organisation
|
|
|
|
# nor does it submit to any jurisdiction.
|
|
|
|
|
|
|
|
# - Try to find AEC (Adaptive Entropy Coding library)
|
|
|
|
# See https://www.dkrz.de/redmine/projects/aec/wiki
|
|
|
|
|
|
|
|
# Once done this will define
|
|
|
|
# AEC_FOUND - System has AEC
|
|
|
|
# AEC_INCLUDE_DIRS - The AEC include directories
|
|
|
|
# AEC_LIBRARIES - The libraries needed to use AEC
|
|
|
|
#
|
|
|
|
# The following paths will be searched with priority if set in CMake or env
|
|
|
|
#
|
|
|
|
# AEC_DIR - prefix path of the AEC installation
|
|
|
|
# AEC_PATH - prefix path of the AEC installation
|
2022-02-16 14:24:34 +00:00
|
|
|
# LIBAEC_DIR
|
|
|
|
# libaec_DIR
|
|
|
|
# LIBAEC_PATH
|
|
|
|
# libaec_PATH
|
2023-09-25 07:07:02 +00:00
|
|
|
# libaec_ROOT
|
2019-03-01 17:07:01 +00:00
|
|
|
|
2022-02-23 18:37:46 +00:00
|
|
|
find_path( AEC_INCLUDE_DIR libaec.h
|
2023-09-25 07:07:02 +00:00
|
|
|
PATHS ${AEC_DIR} ${AEC_PATH} ${LIBAEC_DIR} ${libaec_DIR} ${LIBAEC_PATH} ${libaec_PATH} ${libaec_ROOT} ENV AEC_DIR ENV AEC_PATH ENV LIBAEC_DIR ENV libaec_DIR ENV LIBAEC_PATH ENV libaec_PATH ENV libaec_ROOT
|
2019-03-01 17:07:01 +00:00
|
|
|
PATH_SUFFIXES include include/aec NO_DEFAULT_PATH )
|
2022-02-23 18:37:46 +00:00
|
|
|
find_path( AEC_INCLUDE_DIR libaec.h PATH_SUFFIXES include include/aec )
|
2019-03-01 17:07:01 +00:00
|
|
|
|
|
|
|
find_library( AEC_LIBRARY NAMES aec
|
2023-09-25 07:07:02 +00:00
|
|
|
PATHS ${AEC_DIR} ${AEC_PATH} ${LIBAEC_DIR} ${libaec_DIR} ${LIBAEC_PATH} ${libaec_PATH} ${libaec_ROOT} ENV AEC_DIR ENV AEC_PATH ENV LIBAEC_DIR ENV libaec_DIR ENV LIBAEC_PATH ENV libaec_PATH ENV libaec_ROOT
|
2019-03-01 17:07:01 +00:00
|
|
|
PATH_SUFFIXES lib lib64 lib/aec lib64/aec NO_DEFAULT_PATH )
|
|
|
|
find_library( AEC_LIBRARY NAMES aec PATH_SUFFIXES lib lib64 lib/aec lib64/aec )
|
|
|
|
|
|
|
|
set( AEC_LIBRARIES ${AEC_LIBRARY} )
|
|
|
|
set( AEC_INCLUDE_DIRS ${AEC_INCLUDE_DIR} )
|
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
|
|
|
|
find_package_handle_standard_args(AEC DEFAULT_MSG AEC_LIBRARY AEC_INCLUDE_DIR)
|
|
|
|
|
|
|
|
mark_as_advanced(AEC_INCLUDE_DIR AEC_LIBRARY )
|