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/GooglePerfTools.cmake | |
parent | cb2bd577099f87881d467249cac679200bb367f0 (diff) |
OPEN-199: replace the confusing STANDALONE switch with USESYSTEMLIBS
Diffstat (limited to 'indra/cmake/GooglePerfTools.cmake')
-rwxr-xr-x | indra/cmake/GooglePerfTools.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/cmake/GooglePerfTools.cmake b/indra/cmake/GooglePerfTools.cmake index f3fd008e49..c1faeb9325 100755 --- a/indra/cmake/GooglePerfTools.cmake +++ b/indra/cmake/GooglePerfTools.cmake @@ -5,9 +5,9 @@ include(Prebuilt) # set ON or OFF as desired. set (USE_TCMALLOC OFF) -if (STANDALONE) +if (USESYSTEMLIBS) include(FindGooglePerfTools) -else (STANDALONE) +else (USESYSTEMLIBS) if (WINDOWS) if (USE_TCMALLOC) use_prebuilt_binary(gperftools) @@ -34,7 +34,7 @@ else (STANDALONE) ${LIBS_PREBUILT_DIR}/include) set(GOOGLE_PERFTOOLS_FOUND "YES") endif (LINUX) -endif (STANDALONE) +endif (USESYSTEMLIBS) if (GOOGLE_PERFTOOLS_FOUND) # XXX Disable temporarily, until we have compilation issues on 64-bit |