]> git.mxchange.org Git - simgear.git/blob - simgear/screen/Makefile.am
Merge branch 'zan/cubemap'
[simgear.git] / simgear / screen / Makefile.am
1 includedir = @includedir@/screen
2
3 lib_LIBRARIES = libsgscreen.a
4
5 EXTRA_DIST = jpgfactory.cxx jpgfactory.hxx
6
7 if ENABLE_JPEG_SERVER
8 IMAGE_SERVER_INCL = jpgfactory.hxx
9 IMAGE_SERVER_SRCS = jpgfactory.cxx
10 else
11 IMAGE_SERVER_INCL = 
12 IMAGE_SERVER_SRCS = 
13 endif
14
15 noinst_HEADERS = GLBitmaps.h
16
17 include_HEADERS = \
18         colors.hxx \
19         $(IMAGE_SERVER_INCL) \
20         screen-dump.hxx \
21         extensions.hxx \
22         RenderTexture.h \
23         shader.h \
24         tr.h
25
26 libsgscreen_a_SOURCES = \
27         GLBitmaps.cxx \
28         $(IMAGE_SERVER_SRCS) \
29         screen-dump.cxx \
30         tr.cxx \
31         extensions.cxx \
32         RenderTexture.cpp \
33         shader.cpp \
34         win32-printer.h
35
36 if HAVE_GLUT
37 noinst_PROGRAMS = TestRenderTexture
38
39 TestRenderTexture_SOURCES = TestRenderTexture.cpp
40
41 TestRenderTexture_LDADD = \
42         libsgscreen.a \
43         $(top_builddir)/simgear/debug/libsgdebug.a \
44         $(opengl_LIBS)
45 endif
46
47 INCLUDES = -I$(top_srcdir) -I$(top_builddir) -DGLX_GLXEXT_PROTOTYPES