Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/graphics/importer/Makefile.am

Last change on this file was 10147, checked in by patrick, 17 years ago

merged the mount_point branche back to trunk to use the new std::* based obj file importer

File size: 1.8 KB
Line 
1MAINSRCDIR=../../..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4noinst_LIBRARIES = libORXimporter.a libtc.a
5
6libORXimporter_a_SOURCES = \
7                model.cc \
8                interactive_model.cc \
9                md_model_structure.cc \
10                vertex_array_model.cc \
11                grid.cc \
12                static_model.cc \
13                static_model_data.cc \
14                resource_obj.cc \
15                primitive_model.cc \
16                height_map.cc \
17                \
18                material.cc \
19                texture.cc \
20                texture_data.cc \
21                resource_texture.cc \
22                texture_sequence.cc \
23                media_container.cc \
24                movie_player.cc \
25                \
26                obj/objModel.cc \
27                \
28                oif/object_information_file.cc \
29                oif/resource_oif.cc \
30                \
31                bsp/bsp_manager.cc \
32                bsp/bsp_file.cc \
33                bsp/bsp_tree_node.cc \
34                bsp/bsp_tree_leaf.cc \
35                \
36                md2/md2Model.cc \
37                md2/resource_md2.cc
38#               \
39                md3/md3_model.cc \
40                md3/md3_animation.cc \
41                md3/md3_animation_cfg.cc \
42                md3/md3_bone_frame.cc \
43                md3/md3_mesh.cc \
44                md3/md3_data.cc \
45                md3/md3_tag.cc
46
47
48
49
50libtc_a_SOURCES  = tc.cc
51
52
53noinst_HEADERS = \
54                model.h \
55                interactive_model.h \
56                md_model_structure.cc \
57                tc.h \
58                vertex_array_model.h \
59                grid.h \
60                static_model.h \
61                static_model_data.h \
62                resource_obj.h \
63                primitive_model.h \
64                anorms.h \
65                anormtab.h \
66                height_map.h \
67                \
68                material.h \
69                texture.h \
70                texture_data.h \
71                resource_texture.h \
72                texture_sequence.h \
73                \
74                media_container.h \
75                movie_player.h\
76                \
77                bsp/bsp_manager.h \
78                bsp/bsp_file.h \
79                bsp/bsp_tree_node.h \
80                bsp/bsp_tree_leaf.h \
81                \
82                obj/objModel.h \
83                \
84                oif/object_information_file.h \
85                oif/resource_oif.h \
86                \
87                md2/md2Model.h \
88                md2/resource_md2.h \
89                \
90                md3/md3_model.h \
91                md3/md3_animation.h \
92                md3/md3_animation_cfg.h \
93                md3/md3_bone_frame.h \
94                md3/md3_mesh.h \
95                md3/md3_data.h \
96                md3/md3_tag.h
97
Note: See TracBrowser for help on using the repository browser.