# Copyright (C) 2007-2012 Hypertable, Inc. # # This file is part of Hypertable. # # Hypertable 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 3 # of the License, or any later version. # # Hypertable 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 Hypertable. If not, see # # - Find PYTHON5 # This module defines # PYTHONTHRIFT_FOUND, If false, do not try to use ant exec_program(env ARGS python -c'import thrift' OUTPUT_VARIABLE PYTHONTHRIFT_OUT RETURN_VALUE PYTHONTHRIFT_RETURN) if (PYTHONTHRIFT_RETURN STREQUAL "0") set(PYTHONTHRIFT_FOUND TRUE) else () set(PYTHONTHRIFT_FOUND FALSE) endif () if (PYTHONTHRIFT_FOUND) if (NOT PYTHONTHRIFT_FIND_QUIETLY) message(STATUS "Found thrift for python") endif () else () message(STATUS "Thrift for python not found. " "ThriftBroker support for python will be disabled") endif ()