aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/cmake/CopyWinLibs.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/cmake/CopyWinLibs.cmake')
-rw-r--r--linden/indra/cmake/CopyWinLibs.cmake25
1 files changed, 11 insertions, 14 deletions
diff --git a/linden/indra/cmake/CopyWinLibs.cmake b/linden/indra/cmake/CopyWinLibs.cmake
index 1484663..e80f0c3 100644
--- a/linden/indra/cmake/CopyWinLibs.cmake
+++ b/linden/indra/cmake/CopyWinLibs.cmake
@@ -6,8 +6,8 @@
6 6
7include(CMakeCopyIfDifferent) 7include(CMakeCopyIfDifferent)
8 8
9set(gst_plugin_debug_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/debug/gstreamer-plugins") 9set(gst_plugin_release_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/release/lib/gstreamer-plugins")
10set(gst_plugin_debug_files 10set(gst_plugin_release_files
11 libdshowsrcwrapper.dll 11 libdshowsrcwrapper.dll
12 libfsselector.dll 12 libfsselector.dll
13 libfsvalve.dll 13 libfsvalve.dll
@@ -86,15 +86,15 @@ set(gst_plugin_debug_files
86 ) 86 )
87 87
88copy_if_different( 88copy_if_different(
89 ${gst_plugin_debug_dir} 89 ${gst_plugin_release_dir}
90 "${CMAKE_CURRENT_BINARY_DIR}/Debug/lib/gstreamer-plugins" 90 "${CMAKE_CURRENT_BINARY_DIR}/Release/lib/gstreamer-plugins"
91 out_targets 91 out_targets
92 ${gst_plugin_debug_files} 92 ${gst_plugin_release_files}
93 ) 93 )
94set(all_targets ${all_targets} ${out_targets}) 94set(all_targets ${all_targets} ${out_targets})
95 95
96set(gst_plugin_release_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/release/gstreamer-plugins") 96set(gst_plugin_debug_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/debug/lib/gstreamer-plugins")
97set(gst_plugin_release_files 97set(gst_plugin_debug_files
98 libdshowsrcwrapper.dll 98 libdshowsrcwrapper.dll
99 libfsselector.dll 99 libfsselector.dll
100 libfsvalve.dll 100 libfsvalve.dll
@@ -173,10 +173,10 @@ set(gst_plugin_release_files
173 ) 173 )
174 174
175copy_if_different( 175copy_if_different(
176 ${gst_plugin_release_dir} 176 ${gst_plugin_debug_dir}
177 "${CMAKE_CURRENT_BINARY_DIR}/Release/lib/gstreamer-plugins" 177 "${CMAKE_CURRENT_BINARY_DIR}/Debug/lib/gstreamer-plugins"
178 out_targets 178 out_targets
179 ${gst_plugin_release_files} 179 ${gst_plugin_debug_files}
180 ) 180 )
181set(all_targets ${all_targets} ${out_targets}) 181set(all_targets ${all_targets} ${out_targets})
182 182
@@ -184,11 +184,8 @@ set(vivox_src_dir "${CMAKE_SOURCE_DIR}/newview/vivox-runtime/i686-win32")
184set(vivox_files 184set(vivox_files
185 tntk.dll 185 tntk.dll
186 libeay32.dll 186 libeay32.dll
187 SLVoice.exe
188 ssleay32.dll 187 ssleay32.dll
189 SLVoiceAgent.exe
190 srtp.dll 188 srtp.dll
191 vivoxsdk.dll
192 ortp.dll 189 ortp.dll
193 wrap_oal.dll 190 wrap_oal.dll
194 ) 191 )
@@ -414,4 +411,4 @@ if (MSVC80)
414 endif (EXISTS ${release_msvc8_redist_path}) 411 endif (EXISTS ${release_msvc8_redist_path})
415endif (MSVC80) 412endif (MSVC80)
416 413
417add_custom_target(copy_win_libs ALL DEPENDS ${all_targets}) 414add_custom_target(copy_win_libs ALL DEPENDS ${all_targets}) \ No newline at end of file