The following CMake options have been added (enabled by default), except for the lite build configuration. - WITH_IO_STL - WITH_IO_WAVEFRONT_OBJ - WITH_IO_GPENCIL (for grease pencil SVG importing). Note that it was already possible to disable grease pencil export by disabling WITH_PUGIXML & WITH_HARU. This is intended to keep the lite builds fast and small for building, linking & execution. Reviewed By: iyadahmed2001, aras_p, antoniov, mont29 Ref D15141
71 lines
1.5 KiB
C
71 lines
1.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2008 Blender Foundation. All rights reserved. */
|
|
|
|
/** \file
|
|
* \ingroup collada
|
|
*/
|
|
|
|
#include "io_ops.h" /* own include */
|
|
|
|
#include "WM_api.h"
|
|
|
|
#ifdef WITH_COLLADA
|
|
# include "io_collada.h"
|
|
#endif
|
|
|
|
#ifdef WITH_ALEMBIC
|
|
# include "io_alembic.h"
|
|
#endif
|
|
|
|
#ifdef WITH_USD
|
|
# include "io_usd.h"
|
|
#endif
|
|
|
|
#include "io_cache.h"
|
|
#include "io_gpencil.h"
|
|
#include "io_obj.h"
|
|
#include "io_stl_ops.h"
|
|
|
|
void ED_operatortypes_io(void)
|
|
{
|
|
#ifdef WITH_COLLADA
|
|
/* Collada operators: */
|
|
WM_operatortype_append(WM_OT_collada_export);
|
|
WM_operatortype_append(WM_OT_collada_import);
|
|
#endif
|
|
#ifdef WITH_ALEMBIC
|
|
WM_operatortype_append(WM_OT_alembic_import);
|
|
WM_operatortype_append(WM_OT_alembic_export);
|
|
#endif
|
|
#ifdef WITH_USD
|
|
WM_operatortype_append(WM_OT_usd_import);
|
|
WM_operatortype_append(WM_OT_usd_export);
|
|
#endif
|
|
|
|
#ifdef WITH_IO_GPENCIL
|
|
WM_operatortype_append(WM_OT_gpencil_import_svg);
|
|
# ifdef WITH_PUGIXML
|
|
WM_operatortype_append(WM_OT_gpencil_export_svg);
|
|
# endif
|
|
# ifdef WITH_HARU
|
|
WM_operatortype_append(WM_OT_gpencil_export_pdf);
|
|
# endif
|
|
#endif
|
|
|
|
WM_operatortype_append(CACHEFILE_OT_open);
|
|
WM_operatortype_append(CACHEFILE_OT_reload);
|
|
|
|
WM_operatortype_append(CACHEFILE_OT_layer_add);
|
|
WM_operatortype_append(CACHEFILE_OT_layer_remove);
|
|
WM_operatortype_append(CACHEFILE_OT_layer_move);
|
|
|
|
#ifdef WITH_IO_WAVEFRONT_OBJ
|
|
WM_operatortype_append(WM_OT_obj_export);
|
|
WM_operatortype_append(WM_OT_obj_import);
|
|
#endif
|
|
|
|
#ifdef WITH_IO_STL
|
|
WM_operatortype_append(WM_OT_stl_import);
|
|
#endif
|
|
}
|