Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/terrain/src/lib/graphics/importer/Makefile.am @ 8965

Last change on this file since 8965 was 8715, checked in by ponder, 18 years ago
  • Added special checks for macosx to acinclude.m4 and configure.ac. This sucks
  • Reapplied the endianness checks to the md2_model file. They got lost during the merge operation.
  • Tried to do the collision detection for the ground. But somehow it doesn't work. Perhaps an offset will do.
File size: 2.6 KB
Line 
1MAINSRCDIR=../../..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4noinst_LIBRARIES = libORXimporter.a libtc.a
5
6libORXimporter_a_SOURCES = model.cc \
7                           interactive_model.cc \
8                           md_model_structure.cc \
9                           vertex_array_model.cc \
10                           grid.cc \
11                           static_model.cc \
12                           objModel.cc \
13                           primitive_model.cc \
14                           height_map.cc \
15                           bsp_manager.cc \
16                           bsp_file.cc \
17                           bsp_tree_node.cc \
18                           bsp_tree_leaf.cc \
19                           \
20                           material.cc \
21                           texture.cc \
22                           texture_data.cc \
23                           texture_sequence.cc \
24                           media_container.cc \
25                           movie_player.cc \
26                           \
27                           bsp_manager.cc \
28                           bsp_file.cc \
29                           bsp_tree_node.cc \
30                           bsp_tree_leaf.cc \
31                           \
32                           md2/md2Model.cc \
33                           \
34                           md3/md3_model.cc \
35                           md3/md3_animation.cc \
36                           md3/md3_bone_frame.cc \
37                           md3/md3_mesh.cc \
38                           md3/md3_data.cc \
39                           md3/md3_tag.cc \
40                           \
41                           terrain/terrain.cc \
42                           terrain/terrain_quad.cc \
43                           terrain/terrain_page.cc \
44                           terrain/frustum.cc \
45                           terrain/buffer_broker.cc
46
47
48libtc_a_SOURCES  = tc.cc
49
50
51noinst_HEADERS = \
52                model.h \
53                interactive_model.h \
54                md_model_structure.cc \
55                tc.h \
56                vertex_array_model.h \
57                grid.h \
58                static_model.h \
59                objModel.h \
60                primitive_model.h \
61                anorms.h \
62                anormtab.h \
63                height_map.h \
64                \
65                material.h \
66                texture.h \
67                texture_data.h \
68                texture_sequence.h \
69                \
70                media_container.h \
71                movie_player.h\
72                \
73                bsp_manager.h \
74                bsp_file.h \
75                bsp_tree_node.h \
76                bsp_tree_leaf.h \
77                \
78                md2/md2Model.h \
79                \
80                md3/md3_model.h \
81                md3/md3_animation.h \
82                md3/md3_bone_frame.h \
83                md3/md3_mesh.h \
84                md3/md3_data.h \
85                md3/md3_tag.h \
86                \
87                terrain/terrain.h \
88                terrain/terrain_page.h \
89                terrain/terrain_quad.h \
90                terrain/frustum.h \
91                terrain/types.h \
92                terrain/buffer_broker.h
93
Note: See TracBrowser for help on using the repository browser.