Completed the move of the filter_quality mapping filter from within the edit_quality folder to the same level.

This commit is contained in:
Paolo Cignoni cignoni 2009-03-31 20:30:34 +00:00
parent 38cfb1a028
commit acbbf1dbbd
2 changed files with 14 additions and 30 deletions

View File

@ -1,34 +1,18 @@
TEMPLATE = lib
CONFIG += plugin
CONFIG += stl
INCLUDEPATH += ../../.. ../../../../../vcglib ../../../../../code/lib/glew/include
HEADERS = ../common/const_types.h \
../common/transferfunction.h \
../common/util.h \
../common/meshmethods.h \
filterqualitymapper.h \
../../../meshlab/filterparameter.h
include (../../shared.pri)
SOURCES = ../common/transferfunction.cpp \
../common/util.cpp \
../common/meshmethods.cpp \
filterqualitymapper.cpp \
../../../meshlab/filterparameter.cpp
HEADERS = ../edit_quality/common/const_types.h \
../edit_quality/common/transferfunction.h \
../edit_quality/common/util.h \
../edit_quality/common/meshmethods.h \
filterqualitymapper.h \
./../../meshlab/filterparameter.h
SOURCES = ../edit_quality/common/transferfunction.cpp \
../edit_quality/common/util.cpp \
../edit_quality/common/meshmethods.cpp \
filterqualitymapper.cpp \
../../meshlab/filterparameter.cpp
TARGET = filter_quality
DESTDIR = ../../../meshlab/plugins
# the following line is needed to avoid mismatch between
# the awful min/max macros of windows and the limits max
win32:DEFINES += NOMINMAX
CONFIG += debug_and_release
contains(TEMPLATE,lib) {
CONFIG(debug, debug|release) {
unix:TARGET = $$member(TARGET, 0)_debug
else:TARGET = $$member(TARGET, 0)d
}
}
QT += opengl

View File

@ -35,9 +35,9 @@ FIRST RELEASE
#include <meshlab/meshmodel.h>
#include <meshlab/interfaces.h>
#include "../common/transferfunction.h"
#include "../edit_quality/common/transferfunction.h"
#include <vcg/complex/trimesh/stat.h> // for ComputePerVertexQualityMinMax
#include "../common/meshmethods.h"
#include "../edit_quality/common/meshmethods.h"
using namespace vcg;