Sha256: c198f12524f68222d8028f2fd36f667d5b17c7cdcf7c17c3e32610a2d99e1fee

Contents?: true

Size: 1.39 KB

Versions: 5

Compression:

Stored size: 1.39 KB

Contents

##=================================================================
#   Copyright (C) 2012 2013 BizStation Corp All rights reserved.
#
#   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., 59 Temple Place - Suite 330, Boston, MA  
#   02111-1307, USA.
##=================================================================
## GENERATE SWIG WRAPPER
if(WIN32)
  execute_process(
    ERROR_VARIABLE TRANSACTD_GENERATE_ERROR_VAR
    COMMAND "@SWIG_GEN_CMD_WIN@"
  )
else()
  execute_process(
    ERROR_VARIABLE TRANSACTD_GENERATE_ERROR_VAR
    COMMAND swig -c++ -ruby -I@SWIG_INC_PATH1@ -I@SWIG_INC_PATH2@ -o @SWIG_NATIVE_OUTFILE@ @SWIG_INTERFACE_FILE@
  )
endif()

if("${TRANSACTD_GENERATE_ERROR_VAR}" STREQUAL "")
else()
  message(STATUS ${TRANSACTD_GENERATE_ERROR_VAR})
endif()

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
transactd-2.0.1 build/swig/ruby/generate.cmake.in
transactd-2.0.0 build/swig/ruby/generate.cmake.in
transactd-1.2.0 build/swig/ruby/generate.cmake.in
transactd-1.1.2 build/swig/ruby/generate.cmake.in
transactd-1.0.1 build/swig/ruby/generate.cmake.in