Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-06-21 09:21:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-06-21 09:24:16 +0300
commitc3a8b51413b61c7dca787a8a1b327e9f69dd2be3 (patch)
tree858da0caff1404d95d3942fd6faf6ad7974a8300 /source/blender/editors/manipulator_library/CMakeLists.txt
parentb7669ac1c672a92f31735ae9f92b369f9ba30eb1 (diff)
Manipulator: Move types into their own directory
Diffstat (limited to 'source/blender/editors/manipulator_library/CMakeLists.txt')
-rw-r--r--source/blender/editors/manipulator_library/CMakeLists.txt23
1 files changed, 11 insertions, 12 deletions
diff --git a/source/blender/editors/manipulator_library/CMakeLists.txt b/source/blender/editors/manipulator_library/CMakeLists.txt
index 6421cfddadf..0604946dc24 100644
--- a/source/blender/editors/manipulator_library/CMakeLists.txt
+++ b/source/blender/editors/manipulator_library/CMakeLists.txt
@@ -37,21 +37,20 @@ set(INC_SYS
)
set(SRC
- arrow2d_manipulator.c
- arrow3d_manipulator.c
- cage2d_manipulator.c
- dial3d_manipulator.c
- grab3d_manipulator.c
- geom_arrow_manipulator.c
- geom_cube_manipulator.c
- geom_dial_manipulator.c
manipulator_draw_utils.c
- manipulator_library_presets.c
- manipulator_library_utils.c
- primitive3d_manipulator.c
-
manipulator_geometry.h
manipulator_library_intern.h
+ manipulator_library_presets.c
+ manipulator_library_utils.c
+ geometry/geom_arrow_manipulator.c
+ geometry/geom_cube_manipulator.c
+ geometry/geom_dial_manipulator.c
+ manipulator_types/arrow2d_manipulator.c
+ manipulator_types/arrow3d_manipulator.c
+ manipulator_types/cage2d_manipulator.c
+ manipulator_types/dial3d_manipulator.c
+ manipulator_types/grab3d_manipulator.c
+ manipulator_types/primitive3d_manipulator.c
)
add_definitions(${GL_DEFINITIONS})