diff options
author | Aimee Linden <aimee@lindenlab.com> | 2010-08-19 13:31:45 +0100 |
---|---|---|
committer | Aimee Linden <aimee@lindenlab.com> | 2010-08-19 13:31:45 +0100 |
commit | b9853f8e0928e7ef17f80021f9f31eb0161b6169 (patch) | |
tree | 61bf573d7398aca9a4ff8b9e59cb6a1e4c744cb7 /indra/cmake | |
parent | d568a3684831bf6f50a090483cd3af2e2cabc6fc (diff) |
VWR-20809 (SNOW-504) Do not depend on stage_thirds_party_libs for a standalone build.
Diffstat (limited to 'indra/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 89422fbdb2..2dd296bf12 100644 --- a/indra/cmake/Copy3rdPartyLibs.cmake +++ b/indra/cmake/Copy3rdPartyLibs.cmake @@ -286,7 +286,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}) @@ -391,7 +391,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) |