2010-06-04 11:34:57 +00:00
|
|
|
# ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
# ***** END GPL LICENSE BLOCK *****
|
|
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
set(INC
|
2019-04-17 06:17:24 +02:00
|
|
|
../include
|
|
|
|
|
../../blenfont
|
|
|
|
|
../../blenkernel
|
|
|
|
|
../../blenlib
|
|
|
|
|
../../blentranslation
|
|
|
|
|
../../bmesh
|
|
|
|
|
../../gpu
|
|
|
|
|
../../ikplugin
|
|
|
|
|
../../makesdna
|
|
|
|
|
../../makesrna
|
|
|
|
|
../../render/extern/include
|
|
|
|
|
../../depsgraph
|
2019-04-24 14:39:31 +10:00
|
|
|
../../windowmanager
|
2019-04-17 06:17:24 +02:00
|
|
|
../../../../intern/glew-mx
|
2019-04-24 14:39:31 +10:00
|
|
|
../../../../intern/guardedalloc
|
2011-05-31 01:15:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
set(INC_SYS
|
2019-04-17 06:17:24 +02:00
|
|
|
${GLEW_INCLUDE_PATH}
|
2010-06-04 11:34:57 +00:00
|
|
|
)
|
|
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
set(SRC
|
2019-04-17 06:17:24 +02:00
|
|
|
transform.c
|
|
|
|
|
transform_constraints.c
|
2019-09-05 14:34:54 -03:00
|
|
|
transform_convert.c
|
|
|
|
|
transform_convert_action.c
|
|
|
|
|
transform_convert_armature.c
|
|
|
|
|
transform_convert_paintcurve.c
|
|
|
|
|
transform_convert_cursor.c
|
|
|
|
|
transform_convert_curve.c
|
|
|
|
|
transform_convert_graph.c
|
|
|
|
|
transform_convert_gpencil.c
|
|
|
|
|
transform_convert_lattice.c
|
|
|
|
|
transform_convert_mask.c
|
|
|
|
|
transform_convert_mball.c
|
|
|
|
|
transform_convert_mesh.c
|
|
|
|
|
transform_convert_nla.c
|
|
|
|
|
transform_convert_node.c
|
|
|
|
|
transform_convert_object.c
|
|
|
|
|
transform_convert_particle.c
|
|
|
|
|
transform_convert_sequencer.c
|
|
|
|
|
transform_convert_tracking.c
|
2019-04-17 06:17:24 +02:00
|
|
|
transform_generics.c
|
|
|
|
|
transform_gizmo_2d.c
|
|
|
|
|
transform_gizmo_3d.c
|
|
|
|
|
transform_gizmo_extrude_3d.c
|
|
|
|
|
transform_input.c
|
|
|
|
|
transform_ops.c
|
|
|
|
|
transform_orientations.c
|
|
|
|
|
transform_snap.c
|
|
|
|
|
transform_snap_object.c
|
2010-11-29 04:35:56 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
transform.h
|
2019-09-05 14:34:54 -03:00
|
|
|
transform_convert.h
|
2010-06-04 11:34:57 +00:00
|
|
|
)
|
|
|
|
|
|
2019-04-14 15:18:44 +02:00
|
|
|
set(LIB
|
2019-04-17 06:17:24 +02:00
|
|
|
bf_blenfont
|
|
|
|
|
bf_blenkernel
|
|
|
|
|
bf_blenlib
|
|
|
|
|
bf_bmesh
|
|
|
|
|
bf_editor_mask
|
|
|
|
|
bf_gpu
|
2019-04-14 15:18:44 +02:00
|
|
|
)
|
|
|
|
|
|
2012-03-17 12:07:58 +00:00
|
|
|
if(WITH_INTERNATIONAL)
|
2019-04-17 06:17:24 +02:00
|
|
|
add_definitions(-DWITH_INTERNATIONAL)
|
2012-03-17 12:07:58 +00:00
|
|
|
endif()
|
|
|
|
|
|
2014-10-07 15:46:19 -05:00
|
|
|
add_definitions(${GL_DEFINITIONS})
|
|
|
|
|
|
2019-04-14 15:18:44 +02:00
|
|
|
blender_add_lib(bf_editor_transform "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|