aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra')
-rw-r--r--linden/indra/cmake/CopyWinLibs.cmake62
1 files changed, 0 insertions, 62 deletions
diff --git a/linden/indra/cmake/CopyWinLibs.cmake b/linden/indra/cmake/CopyWinLibs.cmake
index 0c16d9f..4485111 100644
--- a/linden/indra/cmake/CopyWinLibs.cmake
+++ b/linden/indra/cmake/CopyWinLibs.cmake
@@ -172,15 +172,6 @@ copy_if_different(
172 ) 172 )
173set(all_targets ${all_targets} ${out_targets}) 173set(all_targets ${all_targets} ${out_targets})
174 174
175set(vivox_src_dir "${CMAKE_SOURCE_DIR}/newview/vivox-runtime/i686-win32")
176set(vivox_files
177 SLVoice.exe
178 alut.dll
179 vivoxsdk.dll
180 ortp.dll
181 wrap_oal.dll
182 )
183
184set(debug_src_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/debug") 175set(debug_src_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/debug")
185set(debug_files 176set(debug_files
186 alut.dll 177 alut.dll
@@ -256,14 +247,6 @@ copy_if_different(
256 ) 247 )
257set(all_targets ${all_targets} ${out_targets}) 248set(all_targets ${all_targets} ${out_targets})
258 249
259copy_if_different(
260 ${vivox_src_dir}
261 "${CMAKE_CURRENT_BINARY_DIR}/Debug"
262 out_targets
263 ${vivox_files}
264 )
265set(all_targets ${all_targets} ${out_targets})
266
267set(release_src_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/release") 250set(release_src_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/release")
268set(release_files 251set(release_files
269 alut.dll 252 alut.dll
@@ -339,14 +322,6 @@ copy_if_different(
339set(all_targets ${all_targets} ${out_targets}) 322set(all_targets ${all_targets} ${out_targets})
340 323
341copy_if_different( 324copy_if_different(
342 ${vivox_src_dir}
343 "${CMAKE_CURRENT_BINARY_DIR}/Release"
344 out_targets
345 ${vivox_files}
346 )
347set(all_targets ${all_targets} ${out_targets})
348
349copy_if_different(
350 ${release_src_dir} 325 ${release_src_dir}
351 "${CMAKE_CURRENT_BINARY_DIR}/RelWithDebInfo" 326 "${CMAKE_CURRENT_BINARY_DIR}/RelWithDebInfo"
352 out_targets 327 out_targets
@@ -354,43 +329,6 @@ copy_if_different(
354 ) 329 )
355set(all_targets ${all_targets} ${out_targets}) 330set(all_targets ${all_targets} ${out_targets})
356 331
357copy_if_different(
358 ${vivox_src_dir}
359 "${CMAKE_CURRENT_BINARY_DIR}/RelWithDebInfo"
360 out_targets
361 ${vivox_files}
362 )
363set(all_targets ${all_targets} ${out_targets})
364
365
366# Copy MS C runtime dlls, required for packaging.
367# *TODO - Adapt this to support VC9
368if (MSVC80)
369 FIND_PATH(debug_msvc8_redist_path msvcr80d.dll
370 PATHS
371 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup\\VC;ProductDir]/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT
372 )
373
374 if(EXISTS ${debug_msvc8_redist_path})
375 set(debug_msvc8_files
376 msvcr80d.dll
377 msvcp80d.dll
378 Microsoft.VC80.DebugCRT.manifest
379 )
380
381 copy_if_different(
382 ${debug_msvc8_redist_path}
383 "${CMAKE_CURRENT_BINARY_DIR}/Debug"
384 out_targets
385 ${debug_msvc8_files}
386 )
387 set(all_targets ${all_targets} ${out_targets})
388 endif (EXISTS ${debug_msvc8_redist_path})
389
390 FIND_PATH(release_msvc8_redist_path msvcr80.dll
391 PATHS
392 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup\\VC;ProductDir]/redist/x86/Microsoft.VC80.CRT
393 )
394 332
395# Copy MS C runtime dlls, required for packaging. 333# Copy MS C runtime dlls, required for packaging.
396# *TODO - Adapt this to support VC9 334# *TODO - Adapt this to support VC9