summaryrefslogtreecommitdiff
path: root/indra/test_apps/llfbconnecttest/CMakeLists.txt
blob: 512bf202ae69d5f0435694de64b559440e887e73 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
# -*- cmake -*-
project(llfbconnecttest)

include(00-Common)
include(FindOpenGL)
include(LLCommon)
include(LLPlugin)
include(Linking)
include(LLSharedLibs)
include(PluginAPI)
include(LLImage)
include(LLMath)
include(LLMessage)
include(LLRender)
include(LLWindow)
include(Glut)
include(Glui)

include_directories(
    ${LLPLUGIN_INCLUDE_DIRS}
    ${LLCOMMON_INCLUDE_DIRS}
    ${LLIMAGE_INCLUDE_DIRS}
    ${LLMATH_INCLUDE_DIRS}
    ${LLMESSAGE_INCLUDE_DIRS}
    ${LLRENDER_INCLUDE_DIRS}
    ${LLWINDOW_INCLUDE_DIRS}
)

if (DARWIN)
    include(CMakeFindFrameworks)
    find_library(COREFOUNDATION_LIBRARY CoreFoundation)
endif (DARWIN)

### llfbconnecttest

set(llfbconnecttest_SOURCE_FILES
    llfbconnecttest.cpp
    llfbconnecttest.h
    bookmarks.txt
    )

add_executable(llfbconnecttest
    WIN32
    MACOSX_BUNDLE
    ${llfbconnecttest_SOURCE_FILES}
)

set_target_properties(llfbconnecttest
    PROPERTIES
    WIN32_EXECUTABLE
    FALSE
)

target_link_libraries(llfbconnecttest
  ${GLUT_LIBRARY}
  ${GLUI_LIBRARY}
  ${OPENGL_LIBRARIES}
  ${LLPLUGIN_LIBRARIES}
  ${LLMESSAGE_LIBRARIES}
  ${LLCOMMON_LIBRARIES}
  ${PLUGIN_API_WINDOWS_LIBRARIES}
)

if (DARWIN)
  # The testbed needs to use a couple of CoreFoundation calls now, to deal with being a bundled app.
  target_link_libraries(llfbconnecttest
    ${COREFOUNDATION_LIBRARY}
  )
endif (DARWIN)

add_dependencies(llfbconnecttest
  stage_third_party_libs
  SLPlugin
  media_plugin_webkit
  ${LLPLUGIN_LIBRARIES}
  ${LLMESSAGE_LIBRARIES}
  ${LLCOMMON_LIBRARIES}
)

# turn off weird GLUI pragma 
add_definitions(-DGLUI_NO_LIB_PRAGMA)

if (DARWIN OR LINUX)
  # glui.h contains code that triggers the "overloaded-virtual" warning in gcc.  
  set_source_files_properties(llfbconnecttest.cpp PROPERTIES COMPILE_FLAGS "-Wno-overloaded-virtual")
endif (DARWIN OR LINUX)

# Gather build products of the various dependencies into the build directory for the testbed.

if (DARWIN)
  # path inside the app bundle where we'll need to copy plugins and other related files
  set(PLUGINS_DESTINATION_DIR
    ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/llfbconnecttest.app/Contents/Resources
  )
  
  # create the Contents/Resources directory
  add_custom_command(
    TARGET llfbconnecttest POST_BUILD
    COMMAND ${CMAKE_COMMAND}
    ARGS
      -E
      make_directory
      ${PLUGINS_DESTINATION_DIR}
    COMMENT "Creating Resources directory in app bundle."
  ) 
else (DARWIN)
  set(PLUGINS_DESTINATION_DIR
    ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/
  )
endif (DARWIN)

get_target_property(BUILT_SLPLUGIN SLPlugin LOCATION)
add_custom_command(TARGET llfbconnecttest POST_BUILD
  COMMAND ${CMAKE_COMMAND} -E copy ${BUILT_SLPLUGIN}  ${PLUGINS_DESTINATION_DIR}
  DEPENDS ${BUILT_SLPLUGIN}
)

get_target_property(BUILT_LLCOMMON llcommon LOCATION)
add_custom_command(TARGET llfbconnecttest POST_BUILD
  COMMAND ${CMAKE_COMMAND} -E copy ${BUILT_LLCOMMON}  ${PLUGINS_DESTINATION_DIR}
  DEPENDS ${BUILT_LLCOMMON}
)


get_target_property(BUILT_WEBKIT_PLUGIN media_plugin_webkit LOCATION)
add_custom_command(TARGET llfbconnecttest POST_BUILD
  COMMAND ${CMAKE_COMMAND} -E copy ${BUILT_WEBKIT_PLUGIN}  ${PLUGINS_DESTINATION_DIR}
  DEPENDS ${BUILT_WEBKIT_PLUGIN}
)

# copy over bookmarks file if llfbconnecttest gets built
get_target_property(BUILT_LLFBCONNECTTEST llfbconnecttest LOCATION)
add_custom_command(TARGET llfbconnecttest POST_BUILD
  COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/bookmarks.txt ${CMAKE_CURRENT_BINARY_DIR}/
  DEPENDS ${BUILT_LLFBCONNECTTEST}
)

# also copy it to the same place as SLPlugin, which is what the mac wants...
add_custom_command(TARGET llfbconnecttest POST_BUILD
  COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/bookmarks.txt ${PLUGINS_DESTINATION_DIR}
  DEPENDS ${BUILT_LLFBCONNECTTEST}
)

if(WINDOWS)
  #********************
  # Plugin test library deploy
  #
  # Debug config runtime files required for the FB connect test
  set(fbconnecttest_debug_src_dir "${ARCH_PREBUILT_DIRS_DEBUG}")
  set(fbconnecttest_debug_files
    libeay32.dll
    libglib-2.0-0.dll
    libgmodule-2.0-0.dll
    libgobject-2.0-0.dll
    libgthread-2.0-0.dll
    qtcored4.dll
    qtguid4.dll
    qtnetworkd4.dll
    qtopengld4.dll
    qtwebkitd4.dll
    ssleay32.dll
    )
  copy_if_different(
    ${fbconnecttest_debug_src_dir}
    "${CMAKE_CURRENT_BINARY_DIR}/Debug"
    out_targets
    ${fbconnecttest_debug_files}
    )
  set(fbconnect_test_targets ${fbconnect_test_targets} ${out_targets})
  
  # Debug config runtime files required for the FB connect test (Qt image format plugins)
  set(fbconecttest_debug_src_dir "${ARCH_PREBUILT_DIRS_DEBUG}/imageformats")
  set(fbconecttest_debug_files
    qgifd4.dll
    qicod4.dll
    qjpegd4.dll
    qmngd4.dll
    qsvgd4.dll
    qtiffd4.dll
    )
  copy_if_different(
    ${fbconecttest_debug_src_dir}
    "${CMAKE_CURRENT_BINARY_DIR}/Debug/imageformats"
    out_targets
    ${fbconecttest_debug_files}
    )
  set(fbconnect_test_targets ${fbconnect_test_targets} ${out_targets})

  # Debug config runtime files required for the FB connect test (Qt codec plugins)
  set(fbconnecttest_debug_src_dir "${ARCH_PREBUILT_DIRS_DEBUG}/codecs")
  set(fbconnecttest_debug_files
    qcncodecsd4.dll
    qjpcodecsd4.dll
    qkrcodecsd4.dll
    qtwcodecsd4.dll
    )
  copy_if_different(
    ${fbconnecttest_debug_src_dir}
    "${CMAKE_CURRENT_BINARY_DIR}/Debug/codecs"
    out_targets
    ${fbconnecttest_debug_files}
    )
  set(fbconnect_test_targets ${fbconnect_test_targets} ${out_targets})
 
  # Release & ReleaseDebInfo config runtime files required for the FB connect test
  set(fbconnecttest_release_src_dir "${ARCH_PREBUILT_DIRS_RELEASE}")
  set(fbconnecttest_release_files
    libeay32.dll
    libglib-2.0-0.dll
    libgmodule-2.0-0.dll
    libgobject-2.0-0.dll
    libgthread-2.0-0.dll
    qtcore4.dll
    qtgui4.dll
    qtnetwork4.dll
    qtopengl4.dll
    qtwebkit4.dll
    qtxmlpatterns4.dll
    ssleay32.dll
    )
  copy_if_different(
    ${fbconnecttest_release_src_dir}
    "${CMAKE_CURRENT_BINARY_DIR}/Release"
    out_targets
    ${fbconnecttest_release_files}
    )
  set(fbconnect_test_targets ${fbconnect_test_targets} ${out_targets})

  copy_if_different(
    ${fbconnecttest_release_src_dir}
    "${CMAKE_CURRENT_BINARY_DIR}/RelWithDebInfo"
    out_targets
    ${fbconnecttest_release_files}
    )
  set(fbconnect_test_targets ${fbconnect_test_targets} ${out_targets})

  # Release & ReleaseDebInfo config runtime files required for the FB connect test (Qt image format plugins)
  set(fbconnecttest_release_src_dir "${ARCH_PREBUILT_DIRS_RELEASE}/imageformats")
  set(fbconnecttest_release_files
    qgif4.dll
    qico4.dll
    qjpeg4.dll
    qmng4.dll
    qsvg4.dll
    qtiff4.dll
    )
  copy_if_different(
    ${fbconnecttest_release_src_dir}
    "${CMAKE_CURRENT_BINARY_DIR}/Release/imageformats"
    out_targets
    ${fbconnecttest_release_files}
    )
  set(fbconnect_test_targets ${fbconnect_test_targets} ${out_targets})

  copy_if_different(
    ${fbconnecttest_release_src_dir}
    "${CMAKE_CURRENT_BINARY_DIR}/RelWithDebInfo/imageformats"
    out_targets
    ${fbconnecttest_release_files}
    )
  set(fbconnect_test_targets ${fbconnect_test_targets} ${out_targets})

  # Release & ReleaseDebInfo config runtime files required for the FB connect test (Qt codec plugins)
  set(fbconnecttest_release_src_dir "${ARCH_PREBUILT_DIRS_RELEASE}/codecs")
  set(fbconnecttest_release_files
    qcncodecs4.dll  
    qjpcodecs4.dll  
    qkrcodecs4.dll  
    qtwcodecs4.dll  
    )
  copy_if_different(
    ${fbconnecttest_release_src_dir}
    "${CMAKE_CURRENT_BINARY_DIR}/Release/codecs"
    out_targets
    ${fbconnecttest_release_files}
    )
  set(fbconnect_test_targets ${fbconnect_test_targets} ${out_targets})

  copy_if_different(
    ${fbconnecttest_release_src_dir}
    "${CMAKE_CURRENT_BINARY_DIR}/RelWithDebInfo/codecs"
    out_targets
    ${fbconnecttest_release_files}
    )
  set(fbconnect_test_targets ${fbconnect_test_targets} ${out_targets})
 
   add_custom_target(copy_fbconnecttest_libs ALL
     DEPENDS 
     ${fbconnect_test_targets}
     )

  add_dependencies(llfbconnecttest copy_fbconnecttest_libs)

endif(WINDOWS)

if (DARWIN)
  set(fbconnecttest_release_src_dir "${ARCH_PREBUILT_DIRS_RELEASE}")
  set(fbconnecttest_release_files
    libexception_handler.dylib
    libaprutil-1.0.dylib
    libapr-1.0.dylib
    libexpat.1.5.2.dylib
    libQtCore.4.7.1.dylib
    libQtCore.4.dylib
    libQtGui.4.7.1.dylib
    libQtGui.4.dylib
    libQtNetwork.4.7.1.dylib
    libQtNetwork.4.dylib
    libQtOpenGL.4.7.1.dylib
    libQtOpenGL.4.dylib
    libQtWebKit.4.7.1.dylib
    libQtWebKit.4.dylib
    libQtSvg.4.7.1.dylib
    libQtSvg.4.dylib
    libQtXml.4.7.1.dylib
    libQtXml.4.dylib
    )
  copy_if_different(
    ${fbconnecttest_release_src_dir}
    "${PLUGINS_DESTINATION_DIR}"
    out_targets
    ${fbconnecttest_release_files}
    )
  set(fbconnect_test_targets ${fbconnect_test_targets} ${out_targets})

  # Release & ReleaseDebInfo config runtime files required for the FB connect test (Qt image format plugins)
  set(fbconnecttest_release_src_dir "${ARCH_PREBUILT_DIRS_PLUGINS}/imageformats")
  set(fbconnecttest_release_files
    libqgif.dylib
    libqico.dylib
    libqjpeg.dylib
    libqmng.dylib
    libqsvg.dylib
    libqtiff.dylib
    )
  copy_if_different(
    ${fbconnecttest_release_src_dir}
    "${PLUGINS_DESTINATION_DIR}/imageformats"
    out_targets
    ${fbconnecttest_release_files}
    )
  set(fbconnect_test_targets ${fbconnect_test_targets} ${out_targets})

  # Release & ReleaseDebInfo config runtime files required for the FB connect test (Qt codec plugins)
  set(fbconnecttest_release_src_dir "${ARCH_PREBUILT_DIRS_PLUGINS}/codecs")
  set(fbconnecttest_release_files
    libqcncodecs.dylib
    libqjpcodecs.dylib
    libqkrcodecs.dylib
    libqtwcodecs.dylib
    )
  copy_if_different(
    ${fbconnecttest_release_src_dir}
    "${PLUGINS_DESTINATION_DIR}/codecs"
    out_targets
    ${fbconnecttest_release_files}
    )
  set(fbconnect_test_targets ${fbconnect_test_targets} ${out_targets})

  add_custom_target(copy_fbconnecttest_libs ALL
    DEPENDS 
    ${fbconnect_test_targets}
    )

  add_dependencies(llfbconnecttest copy_fbconnecttest_libs)
endif (DARWIN)

if (LINUX)

endif (LINUX)

ll_deploy_sharedlibs_command(llfbconnecttest)