]> Creatis software - crea.git/blob - cmake/InstallLibraryForCMake_UseLibrary.cmake.in
5b741059d78660c353271279d8b53ad39551b527
[crea.git] / cmake / InstallLibraryForCMake_UseLibrary.cmake.in
1 # ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
4 #                        pour la Santé)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 #
7 #  This software is governed by the CeCILL-B license under French law and 
8 #  abiding by the rules of distribution of free software. You can  use, 
9 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
10 #  license as circulated by CEA, CNRS and INRIA at the following URL 
11 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
12 #  or in the file LICENSE.txt.
13 #
14 #  As a counterpart to the access to the source code and  rights to copy,
15 #  modify and redistribute granted by the license, users are provided only
16 #  with a limited warranty  and the software's author,  the holder of the
17 #  economic rights,  and the successive licensors  have only  limited
18 #  liability. 
19 #
20 #  The fact that you are presently reading this means that you have had
21 #  knowledge of the CeCILL-B license and that you accept its terms.
22 # ------------------------------------------------------------------------ */ 
23
24
25 # This is an implementation detail for using @LIBRARY_NAME@ with the
26 # Find@LIBRARY_NAME@.cmake module.  Do not include directly by name.  
27 # This should be included only when Find@LIBRARY_NAME@.cmake sets 
28 # the @LIBRARY_NAME@_USE_FILE variable to point here.
29
30 IF(CREA_VERBOSE_CMAKE)
31   MESSAGE(STATUS "Using @LIBRARY_NAME@")
32 ENDIF(CREA_VERBOSE_CMAKE)
33
34 # Load the compiler settings used for @LIBRARY_NAME@.
35 IF(@LIBRARY_NAME@_BUILD_SETTINGS_FILE)
36   INCLUDE(CMakeImportBuildSettings)
37   CMAKE_IMPORT_BUILD_SETTINGS(${@LIBRARY_NAME@_BUILD_SETTINGS_FILE})
38 ENDIF(@LIBRARY_NAME@_BUILD_SETTINGS_FILE)
39
40 # Add compiler flags needed to use @LIBRARY_NAME@.
41 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${@LIBRARY_NAME@_REQUIRED_C_FLAGS}")
42 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${@LIBRARY_NAME@_REQUIRED_CXX_FLAGS}")
43 SET(CMAKE_LINK_FLAGS "${CMAKE_LINK_FLAGS} ${@LIBRARY_NAME@_REQUIRED_LINK_FLAGS}")
44
45 # Add include directories needed to use @LIBRARY_NAME@.
46 INCLUDE_DIRECTORIES(${@LIBRARY_NAME@_INCLUDE_DIRS})
47
48 # Add link directories needed to use @LIBRARY_NAME@.
49 LINK_DIRECTORIES(${@LIBRARY_NAME@_LIBRARY_DIRS})
50
51 # Set the version 
52 # Already done in bbtkConfigure.h
53 #ADD_DEFINITIONS( -D@LIBRARY_NAME@_VERSION="\"${@LIBRARY_NAME@_VERSION}\"" )
54
55 # Additional use file 
56 IF (@LIBRARY_NAME@_HAS_ADDITIONAL_CONFIG_FILE)
57   # Include it
58   INCLUDE(${@LIBRARY_NAME@_DIR}/AdditionalUse@LIBRARY_NAME@.cmake)
59 ENDIF (@LIBRARY_NAME@_HAS_ADDITIONAL_CONFIG_FILE)