diff options
author | Oz Linden <oz@lindenlab.com> | 2014-03-19 17:30:07 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-03-19 17:30:07 -0400 |
commit | 776aadf4ef65681084268c3866058172c89b4259 (patch) | |
tree | 319c598d928b244047aabce1a8833f516f03b728 /indra/cmake/Copy3rdPartyLibs.cmake | |
parent | cb2bd577099f87881d467249cac679200bb367f0 (diff) |
OPEN-199: replace the confusing STANDALONE switch with USESYSTEMLIBS
Diffstat (limited to 'indra/cmake/Copy3rdPartyLibs.cmake')
-rwxr-xr-x | indra/cmake/Copy3rdPartyLibs.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/cmake/Copy3rdPartyLibs.cmake b/indra/cmake/Copy3rdPartyLibs.cmake index 44c2d3ac27..160f18c99b 100755 --- a/indra/cmake/Copy3rdPartyLibs.cmake +++ b/indra/cmake/Copy3rdPartyLibs.cmake @@ -372,9 +372,9 @@ copy_if_different( ) set(third_party_targets ${third_party_targets} ${out_targets}) -if(NOT STANDALONE) +if(NOT USESYSTEMLIBS) add_custom_target( stage_third_party_libs ALL DEPENDS ${third_party_targets} ) -endif(NOT STANDALONE) +endif(NOT USESYSTEMLIBS) |