X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fscreen%2FMakefile.am;h=cddfbf554eb87d1b359dc9d28f7f06d4ecf56780;hb=2e138779265f7c5b68c46d6e91e75dc25d46e892;hp=86a547c59c90d99e9a583a29202c0f76da6d3dd7;hpb=ba5316ca8e8e2799a05ab3510c68cdc623896861;p=simgear.git diff --git a/simgear/screen/Makefile.am b/simgear/screen/Makefile.am index 86a547c5..cddfbf55 100644 --- a/simgear/screen/Makefile.am +++ b/simgear/screen/Makefile.am @@ -12,22 +12,36 @@ IMAGE_SERVER_INCL = IMAGE_SERVER_SRCS = endif -noinst_HEADERS = colours.h +noinst_HEADERS = GLBitmaps.h include_HEADERS = \ colors.hxx \ - texture.hxx \ $(IMAGE_SERVER_INCL) \ screen-dump.hxx \ extensions.hxx \ + RenderTexture.h \ + shader.h \ tr.h libsgscreen_a_SOURCES = \ - texture.cxx \ - GLBitmaps.cxx GLBitmaps.h \ + GLBitmaps.cxx \ $(IMAGE_SERVER_SRCS) \ screen-dump.cxx \ - tr.cxx \ + tr.cxx \ + extensions.cxx \ + RenderTexture.cpp \ + shader.cpp \ win32-printer.h -INCLUDES = -I$(top_srcdir) +if HAVE_GLUT +noinst_PROGRAMS = TestRenderTexture + +TestRenderTexture_SOURCES = TestRenderTexture.cpp + +TestRenderTexture_LDADD = \ + libsgscreen.a \ + $(top_builddir)/simgear/debug/libsgdebug.a \ + $(opengl_LIBS) +endif + +INCLUDES = -I$(top_srcdir) -I$(top_builddir) -DGLX_GLXEXT_PROTOTYPES