cmake_minimum_required(VERSION 2.8) project(TestComputeNormal) find_package(VTK REQUIRED) include(${VTK_USE_FILE}) add_executable(TestComputeNormal MACOSX_BUNDLE TestComputeNormal) if(VTK_LIBRARIES) target_link_libraries(TestComputeNormal ${VTK_LIBRARIES}) else() target_link_libraries(TestComputeNormal vtkHybrid vtkWidgets) endif()