Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 8319 was 8319, checked in by ponder, 18 years ago

I know this is a big commit. I'm sorry about that. Anyway…

  • Added the Terrain / TerrainQuad TerrainPage and Frustum classes to the project. The rendering frustum culling is working.
  • The types.h is here only temporary. It should be removed afterwards.
File size: 1.6 KB
Line 
1MAINSRCDIR=../../..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4noinst_LIBRARIES = libORXimporter.a libtc.a
5
6libORXimporter_a_SOURCES = model.cc \
7                           vertex_array_model.cc \
8                           grid.cc \
9                           static_model.cc \
10                           objModel.cc \
11                           primitive_model.cc \
12                           md2Model.cc \
13                           material.cc \
14                           texture.cc \
15                           texture_sequence.cc \
16                           height_map.cc \
17                           media_container.cc \
18                           movie_player.cc \
19                           \
20                           bsp_manager.cc \
21                           bsp_file.cc \
22                           bsp_tree_node.cc \
23                           bsp_tree_leaf.cc \
24                           terrain/terrain.cc \
25                           terrain/terrain_quad.cc \
26                           terrain/terrain_page.cc \
27                           terrain/frustum.cc
28
29libtc_a_SOURCES  = tc.cc
30
31
32noinst_HEADERS = \
33                model.h \
34                tc.h \
35                vertex_array_model.h \
36                grid.h \
37                static_model.h \
38                objModel.h \
39                primitive_model.h \
40                md2Model.h \
41                material.h \
42                texture.h \
43                texture_sequence.h \
44                height_map.h \
45                anorms.h \
46                anormtab.h \
47                media_container.h \
48                movie_player.h\
49                \
50                bsp_manager.h \
51                bsp_file.h \
52                bsp_tree_node.h \
53                bsp_tree_leaf.h \
54                terrain/terrain.h \
55                terrain/terrain_page.h \
56                terrain/terrain_quad.h \
57                terrain/frustum.h \
58                terrain/types.h
Note: See TracBrowser for help on using the repository browser.