2 #If we reach this dir we have selected this option
6 #http://www.cmake.org/pipermail/cmake/2003-August/004185.html
7 #http://www.cmake.org/pipermail/cmake/2003-January/001092.html
9 #As of 09/10/2003 there was no FindSWIG.cmake
11 #gdcm_wrap.cxx: $(srcdir)/gdcm.i
12 # $(SWIG) -python -c++ $(SWIG_INC) -o $@ $<
15 ${GDCM_SOURCE_DIR}/src
16 ${PYTHON_INCLUDE_PATH}
20 ${GDCM_SOURCE_DIR}/src
29 ADD_CUSTOM_TARGET(mathieu ALL)
31 SET(GDCM_PYTHON_SOURCES
35 SET_SOURCE_FILES_PROPERTIES(gdcm_wrap.cxx GENERATED)
37 ADD_LIBRARY(pygdcm ${GDCM_PYTHON_SOURCES})
38 TARGET_LINK_LIBRARIES(pygdcm
44 SOURCE ${GDCM_SOURCE_DIR}/gdcmPython/gdcm.i
46 ARGS -python -c++ -I${GDCM_SOURCE_DIR}/src -o ${GDCM_BINARY_DIR}/gdcmPython/gdcm_wrap.cxx ${GDCM_SOURCE_DIR}/gdcmPython/gdcm.i
48 OUTPUTS ${GDCM_BINARY_DIR}/gdcmPython/gdcm_wrap.cxx
56 ${GDCM_SOURCE_DIR}/vtk
59 SET(vtkgdcmPython_la_SOURCES
60 # vtkGdcmReaderPython.cxx
62 ${GDCM_SOURCE_DIR}/vtk/vtkGdcmReader.cxx
64 SET_SOURCE_FILES_PROPERTIES(vtkGdcmReaderPython.cxx GENERATED)
67 # The C++ files must be made into a C++ library
68 #ADD_LIBRARY ( vtkgdcmPython ${vtkgdcmPython_la_SOURCES})
70 # set the libraries to link against
71 #TARGET_LINK_LIBRARIES(vtkgdcmPython vtkCommon)
73 # Configure Python module, which is the plugin itself
75 VTK_WRAP_PYTHON2(vtkgdcmPython gdcmfoo
76 ${vtkgdcmPython_la_SOURCES})
77 ADD_LIBRARY(vtkgdcmPython SHARED ${gdcmfoo})
78 TARGET_LINK_LIBRARIES (vtkgdcmPython
83 ENDIF (GDCM_WRAP_PYTHON)