Salome HOME
Updated copyright comment
[tools/tutorial.git] / FindGd.cmake
1 # - Find gd library
2 # Sets the following variables:
3 #   GD_FOUND        - TRUE if gd library is detected
4 #   GD_INCLUDE_DIRS - path to the gd include directories
5 #   GD_LIBRARIES    - path to the gd libraries to be linked against
6 #
7
8 #########################################################################
9 # Copyright (C) 2013-2024  CEA, EDF, OPEN CASCADE
10 #
11 # This library is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU Lesser General Public
13 # License as published by the Free Software Foundation; either
14 # version 2.1 of the License, or (at your option) any later version.
15 #
16 # This library is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 # Lesser General Public License for more details.
20 #
21 # You should have received a copy of the GNU Lesser General Public
22 # License along with this library; if not, write to the Free Software
23 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
24 #
25 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
26 #
27
28 # ------
29
30 IF(NOT Gd_FIND_QUIETLY)
31   MESSAGE(STATUS "Check for gd ...")
32 ENDIF()
33
34 # ------
35
36 SET(GD_ROOT_DIR $ENV{GD_ROOT_DIR})
37
38 IF(GD_ROOT_DIR)
39  LIST(APPEND CMAKE_PREFIX_PATH "${GD_ROOT_DIR}")
40 ENDIF()
41
42 FIND_PATH(GD_INCLUDE_DIRS gd.h)
43 FIND_LIBRARY(GD_LIBRARIES NAMES gd)
44
45 INCLUDE(FindPackageHandleStandardArgs)
46 FIND_PACKAGE_HANDLE_STANDARD_ARGS(GD REQUIRED_VARS GD_INCLUDE_DIRS GD_LIBRARIES)
47
48 IF(GD_FOUND)
49   IF(NOT Gd_FIND_QUIETLY)
50     MESSAGE(STATUS "gd library: ${GD_LIBRARIES}")
51   ENDIF()
52 ENDIF()