Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
solverstack
morse_cmake
Commits
aeacaee2
Commit
aeacaee2
authored
Jun 02, 2017
by
BOUCHERIE Raphael
Browse files
added header
parent
99cbba17
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/find/FindLIBHQR.cmake
View file @
aeacaee2
###
#
# @copyright (c) 2009-2014 The University of Tennessee and The University
# of Tennessee Research Foundation.
# All rights reserved.
# @copyright (c) 2012-2016 Inria. All rights reserved.
# @copyright (c) 2012-2014 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
#
###
#
# - Try to find LibHQR
# - Try to find LibHQR
# Once done this will define
# Once done this will define
# LIBHQR_FOUND - System has LibHQR
# LIBHQR_FOUND - System has LibHQR
...
@@ -5,11 +15,30 @@
...
@@ -5,11 +15,30 @@
# LIBHQR_LIBRARIES - The libraries needed to use LibHQR
# LIBHQR_LIBRARIES - The libraries needed to use LibHQR
# LIBHQR_DEFINITIONS - Compiler switches required for using LIBHQR
# LIBHQR_DEFINITIONS - Compiler switches required for using LIBHQR
#=============================================================================
# Copyright 2012-2017 Inria.
# Copyright 2017 Raphael Boucherie.
# Copyright 2012-2017 Mathieu Faverge.
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
# (To distribute this file outside of CMake, substitute the full
# License text for the above reference.)
find_package
(
PkgConfig
)
find_package
(
PkgConfig
)
if
(
PKG_CONFIG_FOUND
)
if
(
PKG_CONFIG_FOUND
)
pkg_check_modules
(
PC_LIBHQR QUIET libhqr
)
pkg_check_modules
(
PC_LIBHQR QUIET libhqr
)
endif
()
endif
()
set
(
LIBHQR_LIBRARIES
${
LIBHQR_LIBRARY
}
)
set
(
LIBHQR_INCLUDE_DIRS
${
LIBHQR_INCLUDE_DIR
}
)
set
(
LIBHQR_DEFINITIONS
${
PC_LIBHQR_CFLAGS_OTHER
}
)
find_path
(
find_path
(
LIBHQR_INCLUDE_DIR
LIBHQR_INCLUDE_DIR
libhqr.h
libhqr.h
...
@@ -36,6 +65,3 @@ find_package_handle_standard_args(
...
@@ -36,6 +65,3 @@ find_package_handle_standard_args(
mark_as_advanced
(
LIBHQR_INCLUDE_DIR LIBHQR_LIBRARY
)
mark_as_advanced
(
LIBHQR_INCLUDE_DIR LIBHQR_LIBRARY
)
set
(
LIBHQR_LIBRARIES
${
LIBHQR_LIBRARY
}
)
set
(
LIBHQR_INCLUDE_DIRS
${
LIBHQR_INCLUDE_DIR
}
)
set
(
LIBHQR_DEFINITIONS
${
PC_LIBHQR_CFLAGS_OTHER
}
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment