Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 9006 was 9006, checked in by bensch, 18 years ago

orxonox/trunk: merged the mountain_lake branche back to the trunk
merged with command:
svn merge -r8799:HEAD https://svn.orxonox.net/orxonox/branches/mountain_lake .

conflicts in script taken from the branche, since they are indentation-problems.

also fixed the delete-bug for the lightning-effect

File size: 1.5 KB
Line 
1MAINSRCDIR=../..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4noinst_LIBRARIES = libORXgraphics.a
5
6libORXgraphics_a_SOURCES = \
7                graphics_engine.cc \
8                light.cc \
9                shader.cc \
10                \
11                render2D/render_2d.cc \
12                render2D/element_2d.cc \
13                render2D/image_plane.cc \
14                \
15                text_engine/text_engine.cc \
16                text_engine/text.cc \
17                text_engine/multi_line_text.cc \
18                text_engine/limited_width_text.cc \
19                text_engine/font.cc \
20                text_engine/font_data.cc \
21                \
22                effects/graphics_effect.cc \
23                effects/atmospheric_engine.cc \
24                effects/weather_effect.cc \
25                effects/sun_effect.cc \
26                effects/fog_effect.cc \
27                effects/volfog_effect.cc \
28                effects/rain_effect.cc \
29                effects/snow_effect.cc \
30                effects/cloud_effect.cc \
31                effects/lightning_effect.cc \
32                effects/lense_flare.cc
33
34noinst_HEADERS =\
35                graphics_engine.h \
36                light.h \
37                shader.h \
38                \
39                render2D/render_2d.h \
40                render2D/element_2d.h \
41                render2D/image_plane.h \
42                \
43                text_engine/text_engine.h \
44                text_engine/text.h \
45                text_engine/multi_line_text.h \
46                text_engine/limited_width_text.h \
47                text_engine/font.h \
48                text_engine/font_data.h \
49                text_engine/default_font.xpm \
50                \
51                effects/graphics_effect.h \
52                effects/atmospheric_engine.h \
53                effects/weather_effect.h \
54                effects/sun_effect.h \
55                effects/fog_effect.h \
56                effects/volfog_effect.h \
57                effects/rain_effect.h \
58                effects/snow_effect.h \
59                effects/cloud_effect.h \
60                effects/lightning_effect.h \
61                effects/lense_flare.h
62
63
64SUBDIRS =       importer \
65                spatial_separation
66EXTRA_DIST =
Note: See TracBrowser for help on using the repository browser.