File: meshlab_mini.pro

package info (click to toggle)
meshlab 1.3.2%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 21,096 kB
  • ctags: 33,630
  • sloc: cpp: 224,813; ansic: 8,170; xml: 119; makefile: 80
file content (29 lines) | stat: -rw-r--r-- 1,253 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# 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_meshing \   # 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 \

#