############################################################################ # FindZxing.txt # Copyright (C) 2018 Belledonne Communications, Grenoble France # ############################################################################ # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # ############################################################################ # # - Find the zxing include file and library # # ZXING_FOUND - system has zxing # ZXING_INCLUDE_DIRS - the zxing include directory # ZXING_LIBRARIES - The libraries needed to use zxing find_path(ZXING_INCLUDE_DIRS NAMES ZXing/BarcodeFormat.h ZXing/BitHacks.h ZXing/ByteArray.h ZXing/CharacterSet.h ZXing/Flags.h ZXing/GTIN.h ZXing/TextUtfEncoding.h ZXing/ZXAlgorithms.h ZXing/ZXConfig.h PATH_SUFFIXES include ) find_library(ZXING_LIBRARIES NAMES ZXing libZXing PATH_SUFFIXES Frameworks bin lib lib64 ) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(ZXing DEFAULT_MSG ZXING_INCLUDE_DIRS ZXING_LIBRARIES ) mark_as_advanced(ZXING_INCLUDE_DIRS ZXING_LIBRARIES)