~vanvugt/mir/handoff

« back to all changes in this revision

Viewing changes to examples/CMakeLists.txt

  • Committer: Daniel van Vugt
  • Date: 2015-08-12 09:52:57 UTC
  • mfrom: (2798.1.41 trunk)
  • Revision ID: daniel.van.vugt@canonical.com-20150812095257-58wduov90c2mpiqs
Merge latest trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
181
181
    ${Boost_LIBRARIES}
182
182
)
183
183
 
184
 
mir_add_wrapped_executable(mir_demo_server
185
 
  server_example.cpp
186
 
  glog_logger.cpp
187
 
  server_example_test_client.cpp
188
 
)
189
 
 
190
 
target_link_libraries(mir_demo_server
191
 
  mirserver
192
 
  exampleserverconfig
193
 
  ${GLog_LIBRARY}
194
 
  ${GFlags_LIBRARY}
195
 
  ${Boost_LIBRARIES}
196
 
)
197
 
 
198
184
add_library(mir_demo_server_loadable MODULE
199
185
  server_example.cpp
200
186
  glog_logger.cpp
213
199
  LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
214
200
)
215
201
 
216
 
mir_add_wrapped_executable(mir_demo_server_loader
 
202
mir_add_wrapped_executable(mir_demo_server
217
203
  mir_demo_server_loader.cpp
218
204
)
219
205
 
220
 
target_link_libraries(mir_demo_server_loader
 
206
target_link_libraries(mir_demo_server
221
207
  dl
222
208
)
223
209