-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathstarlab_full.pro
More file actions
64 lines (59 loc) · 3.08 KB
/
starlab_full.pro
File metadata and controls
64 lines (59 loc) · 3.08 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#--- This file compiles the full starlab. If you have compile problems, you
# should try starlab_mini.pro. Alternatively, you can comment out subdirs
# if something is not working correctly.
TEMPLATE = subdirs
CONFIG += ordered
#-------------------------------------------------------------------------------
# STARLAB CORE
#-------------------------------------------------------------------------------
SUBDIRS += core
#-------------------------------------------------------------------------------
# ADVANCED CORE PLUGINS
#-------------------------------------------------------------------------------
#SUBDIRS += core/plugins/gui_python
#SUBDIRS += plugins/project_io_starlab
#-------------------------------------------------------------------------------
# SURFACEMESH
#-------------------------------------------------------------------------------
#--- Model Plugin
SUBDIRS += surfacemesh/surfacemesh #< DYNAMIC DATATYPE
#--- I/O Plugins
SUBDIRS += surfacemesh/surfacemesh_io_off
SUBDIRS += surfacemesh/surfacemesh_io_obj
#--- Rendering Plugins
SUBDIRS += surfacemesh/surfacemesh_render_verts
SUBDIRS += surfacemesh/surfacemesh_render_flat
SUBDIRS += surfacemesh/surfacemesh_render_smooth
SUBDIRS += surfacemesh/surfacemesh_render_wireframe
SUBDIRS += surfacemesh/surfacemesh_render_flatwire
SUBDIRS += surfacemesh/surfacemesh_render_transparent
#--- Filter Plugins [[ @TODO: FIX COMPILE ISSUES ]]
SUBDIRS += surfacemesh/surfacemesh_filter_create
SUBDIRS += surfacemesh/surfacemesh_filter_normalize
SUBDIRS += surfacemesh/surfacemesh_filter_butterfly_subdivision
SUBDIRS += surfacemesh/surfacemesh_filter_isotropic_remesher
SUBDIRS += surfacemesh/surfacemesh_filter_laplacian_smoothing
SUBDIRS += surfacemesh/surfacemesh_filter_simplification
SUBDIRS += surfacemesh/surfacemesh_filter_geoheat
SUBDIRS += surfacemesh/surfacemesh_filter_ballpivoting
#SUBDIRS += surfacemesh/surfacemesh_filter_au_skeleton
#SUBDIRS += surfacemesh/filter_depthscanner
#--- Mode Plugins
SUBDIRS += surfacemesh/surfacemesh_mode_info
SUBDIRS += surfacemesh/surfacemesh_mode_arapdeform
#--- Decorate Plugins [[ @TODO: INTERFACE NOT READY!! ]]
#SUBDIRS += surfacemesh/surfacemesh_decorate_normals
#SUBDIRS += surfacemesh/surfacemesh_decorate_selection
#-------------------------------------------------------------------------------
# EXAMPLES (CLOUD MODEL)
#-------------------------------------------------------------------------------
#SUBDIRS += core/example/cloud #< a *very* simple "cloud" model
#SUBDIRS += core/example/cloud_io_pts
#SUBDIRS += core/example/cloud_render_points
#SUBDIRS += core/example/cloud_filter_normalize
#SUBDIRS += core/example/cloud_mode_select
#SUBDIRS += core/example/cloud_decorate_selection
#-------------------------------------------------------------------------------
# EXAMPLES (TEMPLATES)
#-------------------------------------------------------------------------------
#SUBDIRS += core/example/example_mode_withwidget #< shows you how to create a mode plugin with widget