aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/cmake/CopyWinLibs.cmake
diff options
context:
space:
mode:
authorJacek Antonelli2009-06-08 00:41:31 -0500
committerJacek Antonelli2009-06-08 00:41:31 -0500
commit0e5df9bdf8d6b418bb6e25615e2ffc922d0f02aa (patch)
tree2c93d38e210832e737d09cff7561373d8d5453b2 /linden/indra/cmake/CopyWinLibs.cmake
parentImprudence 1.1.0 released. (diff)
parentUpdated Imprudence to be based on SL 1.22.11. (ChangeLog Entry) (diff)
downloadmeta-impy-0e5df9bdf8d6b418bb6e25615e2ffc922d0f02aa.zip
meta-impy-0e5df9bdf8d6b418bb6e25615e2ffc922d0f02aa.tar.gz
meta-impy-0e5df9bdf8d6b418bb6e25615e2ffc922d0f02aa.tar.bz2
meta-impy-0e5df9bdf8d6b418bb6e25615e2ffc922d0f02aa.tar.xz
Merge branch 'sl-base-1.22' into next
Conflicts: linden/indra/newview/English.lproj/InfoPlist.strings linden/indra/newview/skins/default/xui/en-us/panel_chat_bar.xml
Diffstat (limited to 'linden/indra/cmake/CopyWinLibs.cmake')
-rw-r--r--linden/indra/cmake/CopyWinLibs.cmake40
1 files changed, 35 insertions, 5 deletions
diff --git a/linden/indra/cmake/CopyWinLibs.cmake b/linden/indra/cmake/CopyWinLibs.cmake
index 452292a..0c16d9f 100644
--- a/linden/indra/cmake/CopyWinLibs.cmake
+++ b/linden/indra/cmake/CopyWinLibs.cmake
@@ -174,10 +174,9 @@ set(all_targets ${all_targets} ${out_targets})
174 174
175set(vivox_src_dir "${CMAKE_SOURCE_DIR}/newview/vivox-runtime/i686-win32") 175set(vivox_src_dir "${CMAKE_SOURCE_DIR}/newview/vivox-runtime/i686-win32")
176set(vivox_files 176set(vivox_files
177 tntk.dll 177 SLVoice.exe
178 libeay32.dll 178 alut.dll
179 ssleay32.dll 179 vivoxsdk.dll
180 srtp.dll
181 ortp.dll 180 ortp.dll
182 wrap_oal.dll 181 wrap_oal.dll
183 ) 182 )
@@ -393,6 +392,37 @@ if (MSVC80)
393 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup\\VC;ProductDir]/redist/x86/Microsoft.VC80.CRT 392 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup\\VC;ProductDir]/redist/x86/Microsoft.VC80.CRT
394 ) 393 )
395 394
395# Copy MS C runtime dlls, required for packaging.
396# *TODO - Adapt this to support VC9
397if (MSVC80)
398 FIND_PATH(debug_msvc8_redist_path msvcr80d.dll
399 PATHS
400 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup\\VC;ProductDir]/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT
401 NO_DEFAULT_PATH
402 )
403
404 if(EXISTS ${debug_msvc8_redist_path})
405 set(debug_msvc8_files
406 msvcr80d.dll
407 msvcp80d.dll
408 Microsoft.VC80.DebugCRT.manifest
409 )
410
411 copy_if_different(
412 ${debug_msvc8_redist_path}
413 "${CMAKE_CURRENT_BINARY_DIR}/Debug"
414 out_targets
415 ${debug_msvc8_files}
416 )
417 set(all_targets ${all_targets} ${out_targets})
418 endif (EXISTS ${debug_msvc8_redist_path})
419
420 FIND_PATH(release_msvc8_redist_path msvcr80.dll
421 PATHS
422 [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup\\VC;ProductDir]/redist/x86/Microsoft.VC80.CRT
423 NO_DEFAULT_PATH
424 )
425
396 if(EXISTS ${release_msvc8_redist_path}) 426 if(EXISTS ${release_msvc8_redist_path})
397 set(release_msvc8_files 427 set(release_msvc8_files
398 msvcr80.dll 428 msvcr80.dll
@@ -419,4 +449,4 @@ if (MSVC80)
419 endif (EXISTS ${release_msvc8_redist_path}) 449 endif (EXISTS ${release_msvc8_redist_path})
420endif (MSVC80) 450endif (MSVC80)
421 451
422add_custom_target(copy_win_libs ALL DEPENDS ${all_targets}) \ No newline at end of file 452add_custom_target(copy_win_libs ALL DEPENDS ${all_targets})