meshlab/src/meshlab_mini.pro
Federico Ponchio ponchio 9630bcbf92 ported to qt5 (hopefully mantaining compatibility).
In particular changed some deprecated methods and sorted include order
to fix glew and qt5 opengl clashes.
2013-02-21 16:14:46 +00:00

32 lines
1.2 KiB
Prolog

#
# meshlab_mini.pro
#
# This is a minimal project file for compiling as less as possible and having a minimal meshlab setup.
# Compiling this minimal subset does not require any additional library (except obviously qt and vcg).
#
TEMPLATE = subdirs
CONFIG += ordered
SUBDIRS = common \ # the common framework, used by all the plugins,
meshlab \ # the GUI framework
meshlabplugins/io_base\ # a few basic file formats (ply, obj, off), without this you cannot open anything
meshlabplugins/filter_mls \ # a few basic filtering operations, including the well know simplification
#
# Next some other useful, but still easy to be compiled, plugins
# Uncomment them if you succeed in compiling the above ones.
# meshlabplugins/edit_select \
# meshlabplugins/filter_create\
# meshlabplugins/filter_select \
# meshlabplugins/decorate_base \
# meshlabplugins/filter_colorize\
# meshlabplugins/filter_measure\
# meshlabplugins/filter_sampling\
# meshlabplugins/filter_layer\
# meshlabserver \
#