blob: 22d734000990fa1d99ba99de4eb1c0b7660c21d8 [file] [log] [blame]
piotr437f5462014-02-04 17:57:25 +01001# Copyright 2011 Free Software Foundation, Inc.
2#
3# This file is part of GNU Radio
4#
5# GNU Radio is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 3, or (at your option)
8# any later version.
9#
10# GNU Radio is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with GNU Radio; see the file COPYING. If not, write to
17# the Free Software Foundation, Inc., 51 Franklin Street,
18# Boston, MA 02110-1301, USA.
19
20########################################################################
piotr437f5462014-02-04 17:57:25 +010021# Include swig generation macros
22########################################################################
23find_package(SWIG)
24find_package(PythonLibs 2)
25if(NOT SWIG_FOUND OR NOT PYTHONLIBS_FOUND)
26 return()
27endif()
28include(GrSwig)
29include(GrPython)
30
iZsh868abf72015-08-16 13:50:20 +020031IF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
32 # Mac OS X specific code
33 # Without this flag it does not find some of the libraries
34 SET(CMAKE_MODULE_LINKER_FLAGS "-undefined dynamic_lookup")
35ENDIF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
36
piotr437f5462014-02-04 17:57:25 +010037########################################################################
38# Setup swig generation
39########################################################################
40foreach(incdir ${GNURADIO_RUNTIME_INCLUDE_DIRS})
41 list(APPEND GR_SWIG_INCLUDE_DIRS ${incdir}/gnuradio/swig)
42endforeach(incdir)
43
ptrkrysikdfdf8782015-06-27 10:43:30 +020044set(GR_SWIG_LIBRARIES gnuradio-grgsm)
ptrkrysik3be74a72014-12-13 10:11:00 +010045set(GR_SWIG_DOC_FILE ${CMAKE_CURRENT_BINARY_DIR}/grgsm_swig_doc.i)
piotr437f5462014-02-04 17:57:25 +010046set(GR_SWIG_DOC_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/../include)
47
ptrkrysik3be74a72014-12-13 10:11:00 +010048GR_SWIG_MAKE(grgsm_swig grgsm_swig.i)
piotr437f5462014-02-04 17:57:25 +010049
50########################################################################
51# Install the build swig module
52########################################################################
ptrkrysik3be74a72014-12-13 10:11:00 +010053GR_SWIG_INSTALL(TARGETS grgsm_swig DESTINATION ${GR_PYTHON_DIR}/grgsm)
piotr437f5462014-02-04 17:57:25 +010054
55########################################################################
56# Install swig .i files for development
57########################################################################
58install(
59 FILES
ptrkrysik3be74a72014-12-13 10:11:00 +010060 grgsm_swig.i
61 ${CMAKE_CURRENT_BINARY_DIR}/grgsm_swig_doc.i
62 DESTINATION ${GR_INCLUDE_DIR}/grgsm/swig
piotr437f5462014-02-04 17:57:25 +010063)