Fix testsuite error on Picasso: filename too long

This commit is contained in:
Simon Giraudot 2015-08-14 10:49:23 +02:00
parent e75dd99047
commit fbf99e3a35
4 changed files with 9 additions and 9 deletions

View File

@ -449,9 +449,9 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND AND OPENGL_FOUND AND QGLVIEWER_FOUND)
polyhedron_demo_plugin(point_set_shape_detection_plugin Polyhedron_demo_point_set_shape_detection_plugin ${point_set_shape_detectionUI_FILES}) polyhedron_demo_plugin(point_set_shape_detection_plugin Polyhedron_demo_point_set_shape_detection_plugin ${point_set_shape_detectionUI_FILES})
target_link_libraries(point_set_shape_detection_plugin scene_polyhedron_item scene_points_with_normal_item) target_link_libraries(point_set_shape_detection_plugin scene_polyhedron_item scene_points_with_normal_item)
qt5_wrap_ui(point_set_wlop_simplification_and_regularizationUI_FILES Polyhedron_demo_point_set_wlop_simplification_and_regularization_plugin.ui) qt5_wrap_ui(point_set_wlopFILES Polyhedron_demo_point_set_wlop_plugin.ui)
polyhedron_demo_plugin(point_set_wlop_simplification_and_regularization_plugin Polyhedron_demo_point_set_wlop_simplification_and_regularization_plugin ${point_set_wlop_simplification_and_regularizationUI_FILES}) polyhedron_demo_plugin(point_set_wlop_plugin Polyhedron_demo_point_set_wlop_plugin ${point_set_wlopFILES})
target_link_libraries(point_set_wlop_simplification_and_regularization_plugin scene_points_with_normal_item) target_link_libraries(point_set_wlop_plugin scene_points_with_normal_item)
qt5_wrap_ui(point_set_bilateral_smoothingUI_FILES Polyhedron_demo_point_set_bilateral_smoothing_plugin.ui) qt5_wrap_ui(point_set_bilateral_smoothingUI_FILES Polyhedron_demo_point_set_bilateral_smoothing_plugin.ui)
polyhedron_demo_plugin(point_set_bilateral_smoothing_plugin Polyhedron_demo_point_set_bilateral_smoothing_plugin ${point_set_bilateral_smoothingUI_FILES}) polyhedron_demo_plugin(point_set_bilateral_smoothing_plugin Polyhedron_demo_point_set_bilateral_smoothing_plugin ${point_set_bilateral_smoothingUI_FILES})

View File

@ -15,9 +15,9 @@
#include <QtPlugin> #include <QtPlugin>
#include <QMessageBox> #include <QMessageBox>
#include "ui_Polyhedron_demo_point_set_wlop_simplification_and_regularization_plugin.h" #include "ui_Polyhedron_demo_point_set_wlop_plugin.h"
class Polyhedron_demo_point_set_wlop_simplification_and_regularization_plugin : class Polyhedron_demo_point_set_wlop_plugin :
public QObject, public QObject,
public Polyhedron_demo_plugin_helper public Polyhedron_demo_plugin_helper
{ {
@ -46,7 +46,7 @@ public:
public Q_SLOTS: public Q_SLOTS:
void on_actionSimplifyAndRegularize_triggered(); void on_actionSimplifyAndRegularize_triggered();
}; // end Polyhedron_demo_point_set_wlop_simplification_and_regularization_plugin }; // end Polyhedron_demo_point_set_wlop_plugin
class Point_set_demo_point_set_wlop_simplification_and_regularization_dialog : public QDialog, private Ui::WLOPRegularizationAndSimplificationDialog class Point_set_demo_point_set_wlop_simplification_and_regularization_dialog : public QDialog, private Ui::WLOPRegularizationAndSimplificationDialog
{ {
@ -61,7 +61,7 @@ class Point_set_demo_point_set_wlop_simplification_and_regularization_dialog : p
double neighborhoodRadius() const { return m_neighborhoodRadius->value(); } double neighborhoodRadius() const { return m_neighborhoodRadius->value(); }
}; };
void Polyhedron_demo_point_set_wlop_simplification_and_regularization_plugin::on_actionSimplifyAndRegularize_triggered() void Polyhedron_demo_point_set_wlop_plugin::on_actionSimplifyAndRegularize_triggered()
{ {
const Scene_interface::Item_id index = scene->mainSelectionIndex(); const Scene_interface::Item_id index = scene->mainSelectionIndex();
@ -117,4 +117,4 @@ void Polyhedron_demo_point_set_wlop_simplification_and_regularization_plugin::on
} }
} }
#include "Polyhedron_demo_point_set_wlop_simplification_and_regularization_plugin.moc" #include "Polyhedron_demo_point_set_wlop_plugin.moc"

View File

@ -136,7 +136,7 @@ else
point_set_simplification_plugin \ point_set_simplification_plugin \
point_set_smoothing_plugin \ point_set_smoothing_plugin \
point_set_upsampling_plugin \ point_set_upsampling_plugin \
point_set_wlop_simplification_and_regularization_plugin \ point_set_wlop_plugin \
poisson_plugin \ poisson_plugin \
polyhedron_slicer_plugin \ polyhedron_slicer_plugin \
polyhedron_stitching_plugin \ polyhedron_stitching_plugin \