<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Wed, Mar 25, 2015 at 7:12 AM, AI <span dir="ltr"><<a href="mailto:odre_89@hotmail.com" target="_blank">odre_89@hotmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Hi David,<br>
<br>
Thank you very much for your answer.<br>
Now I was able to run cmake, but there is no .so file in the build/bin of my<br>
project. I must miss something else in my CMakeLists.txt...<br></blockquote><div><br></div><div>You are probably missing the add_library() commands, e.g.:</div><div>  add_library(${LIB_PYTHON_NAME} ${LIB_PYTHON_SRCS} ${LIB_PYTHON_EXTRA_SRCS})<br></div><div>  add_library(${MODULE_PYTHON_NAME} MODULE ${MODULE_PYTHON_NAME}Init.cxx)</div><div><br></div><div>There are a lot of other things that are needed as well, for example here is one of my own CMakeLists files that generates python wrappers:</div><div><a href="https://github.com/dgobbi/vtk-dicom/blob/master/Source/CMakeLists.txt#L163">https://github.com/dgobbi/vtk-dicom/blob/master/Source/CMakeLists.txt#L163</a></div><div><br></div><div>Perhaps someone else has found an easier way to do this...</div><div><br></div><div> - David</div><div> </div></div></div></div>