File: FindMsgPuck.cmake

package info (click to toggle)
tarantool 1.7.2.385.g952d79e-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 21,556 kB
  • ctags: 28,405
  • sloc: ansic: 180,313; cpp: 26,044; sh: 15,513; python: 4,893; makefile: 1,412
file content (18 lines) | stat: -rw-r--r-- 718 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# - Find libmsgpuck header-only library
# The module defines the following variables:
#
#  MSGPUCK_FOUND - true if MsgPuck was found
#  MSGPUCK_INCLUDE_DIRS - the directory of the MsgPuck headers
#  MSGPUCK_LIBRARIES - the MsgPuck static library needed for linking
#

find_path(MSGPUCK_INCLUDE_DIR msgpuck.h PATH_SUFFIXES msgpuck)
find_library(MSGPUCK_LIBRARY NAMES libmsgpuck.a)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(MsgPuck
    REQUIRED_VARS MSGPUCK_INCLUDE_DIR MSGPUCK_LIBRARY)
set(MSGPUCK_INCLUDE_DIRS ${MSGPUCK_INCLUDE_DIR})
set(MSGPUCK_LIBRARIES ${MSGPUCK_LIBRARY})
mark_as_advanced(MSGPUCK_INCLUDE_DIR MSGPUCK_INCLUDE_DIRS
                 MSGPUCK_LIBRARY MSGPUCK_LIBRARIES)