X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fscreen%2FMakefile.am;h=0e5129e7bc90c2112fd53a1f3078ba11484029ff;hb=17bcd4e2ab4ea5b9d407e83bb2a30e62e69f170e;hp=20ccf0433438d3200eb807be8eb514ea7cb1740a;hpb=86392857c5e7fa2c97d5b1757ee54d6af3af0447;p=simgear.git diff --git a/simgear/screen/Makefile.am b/simgear/screen/Makefile.am index 20ccf043..0e5129e7 100644 --- a/simgear/screen/Makefile.am +++ b/simgear/screen/Makefile.am @@ -12,21 +12,37 @@ IMAGE_SERVER_INCL = IMAGE_SERVER_SRCS = endif -noinst_HEADERS = \ - colours.h +noinst_HEADERS = GLBitmaps.h include_HEADERS = \ - texture.hxx \ + colors.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) \ + -ldl +endif + +INCLUDES = -I$(top_srcdir) -I$(top_builddir) -DGLX_GLXEXT_PROTOTYPES