diff options
author | Loren Shih <seraph@lindenlab.com> | 2010-11-23 12:04:27 -0500 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2010-11-23 12:04:27 -0500 |
commit | d49d1def45482bccf4600a34bc2fd5693e05d329 (patch) | |
tree | e6eadcf9db118b5ab1fe240011df981a77a09103 /indra/cmake/Copy3rdPartyLibs.cmake | |
parent | b8a0549ac2be032d33a4fa427c8e430cd6df0cc6 (diff) | |
parent | e3df3baff7aebd247737fd3dbcb382f3b12df10b (diff) |
automated merge from mesh-development
Diffstat (limited to 'indra/cmake/Copy3rdPartyLibs.cmake')
-rw-r--r-- | indra/cmake/Copy3rdPartyLibs.cmake | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/indra/cmake/Copy3rdPartyLibs.cmake b/indra/cmake/Copy3rdPartyLibs.cmake index 93cdf3422c..85bb281354 100644 --- a/indra/cmake/Copy3rdPartyLibs.cmake +++ b/indra/cmake/Copy3rdPartyLibs.cmake @@ -295,7 +295,7 @@ copy_if_different( ${vivox_src_dir} "${SHARED_LIB_STAGING_DIR_DEBUG}" out_targets - ${vivox_files} + ${vivox_files} ) set(third_party_targets ${third_party_targets} ${out_targets}) @@ -376,7 +376,9 @@ if(NOT EXISTS ${internal_llkdu_path}) endif (NOT EXISTS ${internal_llkdu_path}) -add_custom_target(stage_third_party_libs ALL - DEPENDS - ${third_party_targets} - ) +if(NOT STANDALONE) + add_custom_target( + stage_third_party_libs ALL + DEPENDS ${third_party_targets} + ) +endif(NOT STANDALONE) |