~alan-griffiths/mir/remove-BufferInitializer

« back to all changes in this revision

Viewing changes to examples/CMakeLists.txt

  • Committer: Alan Griffiths
  • Date: 2014-10-16 13:41:29 UTC
  • Revision ID: alan@octopull.co.uk-20141016134129-11cduv74xjrs0x9z
spike making render_surfaces an example once more

Show diffs side-by-side

added added

removed removed

Lines of Context:
113
113
  ${GLESv2_INCLUDE_DIRS}
114
114
)
115
115
 
 
116
set(RENDER_SURFACES_SOURCES
 
117
    render_surfaces.cpp
 
118
    buffer_render_target.cpp
 
119
    image_renderer.cpp
 
120
)
 
121
add_executable(mir_demo_standalone_render_surfaces ${RENDER_SURFACES_SOURCES})
 
122
target_link_libraries(mir_demo_standalone_render_surfaces
 
123
    mirserver
 
124
    exampleserverconfig
 
125
    ${Boost_LIBRARIES}
 
126
)
 
127
 
 
128
install(TARGETS mir_demo_standalone_render_surfaces RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
 
129
 
116
130
add_executable(mir_demo_standalone_render_to_fb
117
131
    render_to_fb.cpp
118
132
)