blob: 824c0b6a8d03c8c795b47484d09c447f952c4315 [file] [log] [blame]
Michal Vasko11308802016-02-17 14:11:05 +01001# - Try to find LibNETCONF2
2# Once done this will define
3#
4# LIBNETCONF2_FOUND - system has LibNETCONF2
5# LIBNETCONF2_INCLUDE_DIRS - the LibNETCONF2 include directory
6# LIBNETCONF2_LIBRARIES - Link these to use LibNETCONF2
7# LIBNETCONF2_ENABLE_SSH - LibNETCONF2 was compiled with SSH support
8# LIBNETCONF2_ENABLE_TLS - LibNETCONF2 was compiled with TLS support
9#
10# Author Michal Vasko <mvasko@cesnet.cz>
11# Copyright (c) 2015 CESNET, z.s.p.o.
12#
13# Redistribution and use in source and binary forms, with or without
14# modification, are permitted provided that the following conditions
15# are met:
16#
17# 1. Redistributions of source code must retain the copyright
18# notice, this list of conditions and the following disclaimer.
19# 2. Redistributions in binary form must reproduce the copyright
20# notice, this list of conditions and the following disclaimer in the
21# documentation and/or other materials provided with the distribution.
22# 3. The name of the author may not be used to endorse or promote products
23# derived from this software without specific prior written permission.
24#
25# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35#
36
37if (LIBNETCONF2_LIBRARIES AND LIBNETCONF2_INCLUDE_DIRS)
38 # in cache already
39 set(LIBNETCONF2_FOUND TRUE)
40else (LIBNETCONF2_LIBRARIES AND LIBNETCONF2_INCLUDE_DIRS)
41
42 find_path(LIBNETCONF2_INCLUDE_DIR
43 NAMES
44 nc_client.h
45 nc_server.h
46 nc_transapi.h
47 PATHS
48 /usr/include
49 /usr/local/include
50 /opt/local/include
51 /sw/include
52 ${CMAKE_INCLUDE_PATH}
53 ${CMAKE_INSTALL_PREFIX}/include
54 )
55
56 find_library(LIBNETCONF2_LIBRARY
57 NAMES
58 netconf2
59 libnetconf2
60 PATHS
61 /usr/lib
62 /usr/lib64
63 /usr/local/lib
64 /usr/local/lib64
65 /opt/local/lib
66 /sw/lib
67 ${CMAKE_LIBRARY_PATH}
68 ${CMAKE_INSTALL_PREFIX}/lib
69 )
70
71 if (LIBNETCONF2_INCLUDE_DIR AND LIBNETCONF2_LIBRARY)
72 set(LIBNETCONF2_FOUND TRUE)
73 # check compile flags
74 execute_process(COMMAND grep ENABLE_SSH ${LIBNETCONF2_INCLUDE_DIR}/nc_client.h RESULT_VARIABLE RETURN OUTPUT_QUIET ERROR_QUIET)
75 if (RETURN EQUAL 0)
76 set(LIBNETCONF2_ENABLE_SSH TRUE)
77 else (RETURN EQUAL 0)
78 set(LIBNETCONF2_ENABLE_SSH FALSE)
79 endif (RETURN EQUAL 0)
80
81 execute_process(COMMAND grep ENABLE_TLS ${LIBNETCONF2_INCLUDE_DIR}/nc_client.h RESULT_VARIABLE RETURN OUTPUT_QUIET ERROR_QUIET)
82 if (RETURN EQUAL 0)
83 set(LIBNETCONF2_ENABLE_TLS TRUE)
84 else (RETURN EQUAL 0)
85 set(LIBNETCONF2_ENABLE_TLS FALSE)
86 endif (RETURN EQUAL 0)
87 else (LIBNETCONF2_INCLUDE_DIR AND LIBNETCONF2_LIBRARY)
88 set(LIBNETCONF2_FOUND FALSE)
89 endif (LIBNETCONF2_INCLUDE_DIR AND LIBNETCONF2_LIBRARY)
90
91 set(LIBNETCONF2_INCLUDE_DIRS ${LIBNETCONF2_INCLUDE_DIR})
92 set(LIBNETCONF2_LIBRARIES ${LIBNETCONF2_LIBRARY})
93
94 # show the LIBNETCONF2_INCLUDE_DIRS and LIBNETCONF2_LIBRARIES variables only in the advanced view
95 mark_as_advanced(LIBNETCONF2_INCLUDE_DIRS LIBNETCONF2_LIBRARIES)
96
97endif (LIBNETCONF2_LIBRARIES AND LIBNETCONF2_INCLUDE_DIRS)
98