]> git.mxchange.org Git - simgear.git/blobdiff - simgear/screen/Makefile.am
Move SGReadFileCallback from model.cxx to public class ModelRegistry
[simgear.git] / simgear / screen / Makefile.am
index aaa007a3f2b402b39c93226d7b970639e516185b..11e5a1d2fd86b7fd185c39a69122c7dad6f3afcf 100644 (file)
@@ -21,6 +21,7 @@ include_HEADERS = \
        screen-dump.hxx \
        extensions.hxx \
        RenderTexture.h \
+       shader.h \
        tr.h
 
 libsgscreen_a_SOURCES = \
@@ -31,6 +32,18 @@ libsgscreen_a_SOURCES = \
        tr.cxx \
        extensions.cxx \
        RenderTexture.cpp \
+       shader.cpp \
        win32-printer.h
 
-INCLUDES = -I$(top_srcdir) -DGLX_GLXEXT_PROTOTYPES
+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