mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-15 09:04:36 +00:00
Unexpected side effect of the setRenderingData functions. The new rendering framework is quite mysterious sometime…
37 lines
1.5 KiB
Prolog
37 lines
1.5 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
|
|
|
|
|
|
# the common framework, used by all the plugins,
|
|
SUBDIRS = common \
|
|
meshlab \ # the GUI framework
|
|
meshlabplugins/io_base\ # a few basic file formats (ply, obj, off), without this you cannot open anything
|
|
meshlabplugins/filter_meshing \
|
|
#
|
|
# Next some other useful, but still easy to be compiled, plugins
|
|
# Uncomment them if you succeed in compiling the above ones.
|
|
# meshlabplugins/decorate_background \
|
|
# meshlabplugins/decorate_base \
|
|
meshlabplugins/edit_align \
|
|
# meshlabplugins/edit_manipulators \
|
|
# meshlabplugins/edit_select \
|
|
# meshlabplugins/filter_clean\
|
|
# meshlabplugins/filter_colorize\
|
|
# meshlabplugins/filter_create\
|
|
# meshlabplugins/filter_layer\
|
|
# meshlabplugins/filter_measure\
|
|
# meshlabplugins/filter_sampling\
|
|
# meshlabplugins/filter_select \
|
|
# meshlabplugins/filter_quality \
|
|
# meshlabplugins/filter_unsharp \
|
|
# meshlabplugins/io_collada \
|
|
# meshlabplugins/io_x3d \
|
|
# meshlabserver
|