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:
Diffstat (limited to 'source/blender/io/wavefront_obj/CMakeLists.txt')
-rw-r--r--source/blender/io/wavefront_obj/CMakeLists.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/source/blender/io/wavefront_obj/CMakeLists.txt b/source/blender/io/wavefront_obj/CMakeLists.txt
index cc375577b52..9cdd96ee7be 100644
--- a/source/blender/io/wavefront_obj/CMakeLists.txt
+++ b/source/blender/io/wavefront_obj/CMakeLists.txt
@@ -3,6 +3,7 @@
set(INC
.
./exporter
+ ./importer
../../blenkernel
../../blenlib
../../bmesh
@@ -28,6 +29,13 @@ set(SRC
exporter/obj_export_mtl.cc
exporter/obj_export_nurbs.cc
exporter/obj_exporter.cc
+ importer/importer_mesh_utils.cc
+ importer/obj_import_file_reader.cc
+ importer/obj_import_mesh.cc
+ importer/obj_import_mtl.cc
+ importer/obj_import_nurbs.cc
+ importer/obj_importer.cc
+ importer/parser_string_utils.cc
IO_wavefront_obj.h
exporter/obj_export_file_writer.hh
@@ -36,6 +44,14 @@ set(SRC
exporter/obj_export_mtl.hh
exporter/obj_export_nurbs.hh
exporter/obj_exporter.hh
+ importer/importer_mesh_utils.hh
+ importer/obj_import_file_reader.hh
+ importer/obj_import_mesh.hh
+ importer/obj_import_mtl.hh
+ importer/obj_import_nurbs.hh
+ importer/obj_import_objects.hh
+ importer/obj_importer.hh
+ importer/parser_string_utils.hh
)
set(LIB
@@ -53,6 +69,7 @@ blender_add_lib(bf_wavefront_obj "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
if(WITH_GTESTS)
set(TEST_SRC
tests/obj_exporter_tests.cc
+ tests/obj_importer_tests.cc
tests/obj_exporter_tests.hh
)