QGIS/cmake/FindQextserialport.cmake
Doug Newgard 293c56c351
Update FindQextserialport.cmake for Qt5
Find default library name used with Qt5 and checks qt subdir for header
2018-04-04 12:10:14 -05:00

44 lines
1.3 KiB
CMake

# Find Qextserialport
# ~~~~~~~~
# Copyright (c) 2011, Jürgen E. Fischer <jef at norbit.de>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
#
# Once run this will define:
#
# QEXTSERIALPORT_FOUND = system has Qextserialport lib
# QEXTSERIALPORT_LIBRARY = full path to the Qextserialport library
# QEXTSERIALPORT_INCLUDE_DIR = where to find headers
#
FIND_PATH(QEXTSERIALPORT_INCLUDE_DIR NAMES qextserialport.h PATHS
/usr/include
/usr/local/include
"$ENV{LIB_DIR}/include"
"$ENV{INCLUDE}"
PATH_SUFFIXES QtExtSerialPort qt/QtExtSerialPort
)
FIND_LIBRARY(QEXTSERIALPORT_LIBRARY NAMES Qt5ExtSerialPort PATHS
/usr/lib
/usr/local/lib
"$ENV{LIB_DIR}/lib"
"$ENV{LIB}/lib"
)
IF (QEXTSERIALPORT_INCLUDE_DIR AND QEXTSERIALPORT_LIBRARY)
SET(QEXTSERIALPORT_FOUND TRUE)
ENDIF (QEXTSERIALPORT_INCLUDE_DIR AND QEXTSERIALPORT_LIBRARY)
IF (QEXTSERIALPORT_FOUND)
IF (NOT QEXTSERIALPORT_FIND_QUIETLY)
MESSAGE(STATUS "Found Qextserialport: ${QEXTSERIALPORT_LIBRARY}")
ENDIF (NOT QEXTSERIALPORT_FIND_QUIETLY)
ELSE (QEXTSERIALPORT_FOUND)
IF (QEXTSERIALPORT_FIND_REQUIRED)
MESSAGE(FATAL_ERROR "Could not find Qextserialport")
ENDIF (QEXTSERIALPORT_FIND_REQUIRED)
ENDIF (QEXTSERIALPORT_FOUND)