Use native CMake mechanism for find_package(GROMACS)
[alexxy/gromacs.git] / src / gromacs / InstallLibInfo.cmake
1 #
2 # This file is part of the GROMACS molecular simulation package.
3 #
4 # Copyright (c) 2014, by the GROMACS development team, led by
5 # Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 # and including many others, as listed in the AUTHORS file in the
7 # top-level source directory and at http://www.gromacs.org.
8 #
9 # GROMACS is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public License
11 # as published by the Free Software Foundation; either version 2.1
12 # of the License, or (at your option) any later version.
13 #
14 # GROMACS is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 # Lesser General Public License for more details.
18 #
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with GROMACS; if not, see
21 # http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23 #
24 # If you want to redistribute modifications to GROMACS, please
25 # consider that scientific software is very special. Version
26 # control is crucial - bugs must be traceable. We will be happy to
27 # consider code for inclusion in the official distribution, but
28 # derived work must not be called official GROMACS. Details are found
29 # in the README & COPYING files - if they are missing, get the
30 # official version at http://www.gromacs.org.
31 #
32 # To help us fund GROMACS development, we humbly ask that you cite
33 # the research papers on the package. Check out http://www.gromacs.org.
34
35 function (do_pkgconfig)
36     set(PKG_CFLAGS "")
37     foreach (_dir ${INSTALLED_HEADER_INCLUDE_DIRS})
38         if (IS_ABSOLUTE ${_dir})
39             set(PKG_CFLAGS "${PKG_CFLAGS} -I${_dir}")
40         else()
41             set(PKG_CFLAGS "${PKG_CFLAGS} -I${CMAKE_INSTALL_PREFIX}/${_dir}")
42         endif()
43     endforeach()
44     if (INSTALLED_HEADER_DEFINITIONS)
45         foreach (_def ${INSTALLED_HEADER_DEFINITIONS})
46             set(PKG_CFLAGS "${PKG_CFLAGS} ${_def}")
47         endforeach()
48     endif()
49     set(PKG_CFLAGS "${PKG_CFLAGS} ${OpenMP_C_FLAGS}")
50
51     configure_file(libgromacs.pc.cmakein
52                    libgromacs.pc @ONLY)
53     install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libgromacs.pc
54             DESTINATION ${PKGCONFIG_INSTALL_DIR}
55             RENAME "libgromacs${GMX_LIBS_SUFFIX}.pc"
56             COMPONENT development)
57 endfunction()
58
59 function (do_cmake_config)
60     # Remove -dev suffix and similar, since we need a numeric version.
61     # TODO: Make also the full version string available from somewhere.
62     string(REGEX REPLACE "-.*$" "" PACKAGE_VERSION ${PROJECT_VERSION})
63     # Install everything into a subdirectory, because
64     #  1. CMake expects things to be there for CMAKE_PREFIX_PATH to work, and
65     #  2. This nicely isolates files for different suffixes from each other.
66     set(CMAKE_PACKAGE_DIR ${CMAKE_INSTALL_DIR}/gromacs${GMX_LIBS_SUFFIX})
67
68     # Install import definitions that take care of the library locations and
69     # library dependencies.
70     set(EXPORT_FILE_NAME libgromacs.cmake)
71     if (NOT BUILD_SHARED_LIBS)
72         set(EXPORT_FILE_NAME libgromacs_static.cmake)
73     endif()
74     install(EXPORT libgromacs
75             FILE ${EXPORT_FILE_NAME}
76             DESTINATION ${CMAKE_PACKAGE_DIR}
77             COMPONENT libraries)
78
79     get_filename_component(GROMACS_CXX_COMPILER ${CMAKE_CXX_COMPILER} REALPATH)
80     configure_file(gromacs-config.cmake.cmakein
81                    gromacs-config.cmake @ONLY)
82     configure_file(gromacs-config-version.cmake.cmakein
83                    gromacs-config-version.cmake @ONLY)
84     # The configuration files are also installed with the suffix, even though
85     # the directory already contains the suffix. This allows simple
86     # find_package(GROMACS NAMES gromacs_d) to find them, without also
87     # specifying CONFIGS.
88     install(FILES ${CMAKE_CURRENT_BINARY_DIR}/gromacs-config.cmake
89             DESTINATION ${CMAKE_PACKAGE_DIR}
90             RENAME "gromacs${GMX_LIBS_SUFFIX}-config.cmake"
91             COMPONENT development)
92     install(FILES ${CMAKE_CURRENT_BINARY_DIR}/gromacs-config-version.cmake
93             DESTINATION ${CMAKE_PACKAGE_DIR}
94             RENAME "gromacs${GMX_LIBS_SUFFIX}-config-version.cmake"
95             COMPONENT development)
96 endfunction()
97
98 do_pkgconfig()
99 do_cmake_config()