aboutsummaryrefslogtreecommitdiff
path: root/modules/render/Makefile.am
blob: 2870eafbac10b4af03e58a0a1cf9a3aa79d8fded (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
lib_LTLIBRARIES = libxcam_render.la

XCAM_RENDER_CXXFLAGS = \
    $(XCAM_CXXFLAGS)        \
    $(LIBOSG_CFLAGS)        \
    -I$(top_srcdir)/xcore   \
    -I$(top_srcdir)/modules \
    $(NULL)

XCAM_RENDER_LIBS = \
    -losgGA        \
    -losgDB        \
    -losgUtil      \
    -losgFX        \
    -losgText      \
    -losgViewer    \
    -losg          \
    $(top_builddir)/xcore/libxcam_core.la \
    $(NULL)

xcam_render_sources = \
    render_osg_camera_manipulator.cpp \
    render_osg_model.cpp              \
    render_osg_viewer.cpp             \
    $(NULL)

libxcam_render_la_SOURCES = \
    $(xcam_render_sources) \
    $(NULL)

libxcam_render_la_CXXFLAGS = \
    $(XCAM_RENDER_CXXFLAGS) \
    $(NULL)

libxcam_render_la_LIBADD = \
    $(XCAM_RENDER_LIBS) \
    $(NULL)

libxcam_render_la_LDFLAGS = \
    $(XCAM_LT_LDFLAGS) \
    $(NULL)

libxcam_renderincludedir = $(includedir)/xcam/render

nobase_libxcam_renderinclude_HEADERS = \
    render_osg_camera_manipulator.h \
    render_osg_model.h              \
    render_osg_viewer.h             \
    render_osg_shader.h             \
    $(NULL)

libxcam_render_la_LIBTOOLFLAGS = --tag=disable-static