<div dir="ltr">Dear vtk users,<div><br></div><div>there seems to be no keyboard event processing on MAC OSX. I checked this post here:</div><div><br></div><div><a href="http://vtk.org/Bug/view.php?id=2025">http://vtk.org/Bug/view.php?id=2025</a><br>
</div><div><br></div><div>but without success. Here is the content of my CMakeLists.txt file:</div><div><br></div><div>--------------------------------------------------------------------------------------------------------------</div>
<div>







<p class="">project(rec3dapp)</p><p class="">cmake_minimum_required(VERSION 2.6)</p>
<p class="">find_package(VTK)<br></p>
<p class="">find_package(OpenCV)</p>
<p class="">FILE(GLOB CPP_FILES            *.cpp)<br></p>
<p class="">FILE(GLOB REC3D_CPP_FILES      ../rec3d/*.cpp)</p>
<p class="">FILE(GLOB REC3D_VIS_CPP_FILES  ../rec3dvis/*.cpp)</p>
<p class="">FILE(GLOB VTKVIEW_CPP_FILES    ../vtkview/*.cpp)</p>
<p class="">include(${VTK_USE_FILE})<br></p>
<p class="">include_directories(<br></p>
<p class="">  ..</p>
<p class="">)</p>
<p class="">IF(APPLE)<br></p>
<p class="">  SET(EXECUTABLE_FLAG MACOSX_BUNDLE)</p>
<p class="">ENDIF(APPLE)</p>
<p class="">link_libraries(${VTK_LIBRARIES} ${OpenCV_LIBS})<br></p>
<p class="">add_executable(rec3dapp<br></p>
<p class="">  MACOSX_BUNDLE</p>
<p class="">  @CPP_FILES@</p>
<p class="">  @REC3D_CPP_FILES@</p>
<p class="">  @REC3D_VIS_CPP_FILES@</p>
<p class="">  @VTKVIEW_CPP_FILES@</p>
<p class="">)</p><p class="">--------------------------------------------------------------------------------------------------------------<br></p><p class=""><br></p><p class="">Do you have any suggestions?</p><p class="">
Thanks a lot.</p><p class=""><br></p><p class="">Best regards</p><p class="">Chavdar</p><p class=""><br></p></div></div>