diff options
author | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2010-10-12 10:14:28 +0200 |
---|---|---|
committer | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2010-10-12 10:14:28 +0200 |
commit | 11996e9dd79e83a437f52af694ffdd525a490821 (patch) | |
tree | 37ec514bd4192e5053ca98980798e8afa88b7bea | |
parent | a8fbfa40ba6153668e1f713ae0e128224b4f400f (diff) | |
parent | 5bcfa063b448deacd6a539765fc7490309ba1fbe (diff) |
merged SNOW-651: Added missing "if (LL_TESTS)" in indra/llplugin/slplugin/CMakeLists.txt
-rw-r--r-- | doc/contributions.txt | 1 | ||||
-rw-r--r-- | indra/llplugin/slplugin/CMakeLists.txt | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/doc/contributions.txt b/doc/contributions.txt index d179c0fb8c..f2678289ec 100644 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -660,6 +660,7 @@ Techwolf Lupindo SNOW-592 SNOW-649 SNOW-650 + SNOW-651 SNOW-687 SNOW-680 SNOW-681 diff --git a/indra/llplugin/slplugin/CMakeLists.txt b/indra/llplugin/slplugin/CMakeLists.txt index 08d35f9ae7..3fc54573a7 100644 --- a/indra/llplugin/slplugin/CMakeLists.txt +++ b/indra/llplugin/slplugin/CMakeLists.txt @@ -79,4 +79,6 @@ if (DARWIN) ) endif (DARWIN) -ll_deploy_sharedlibs_command(SLPlugin) +if (LL_TESTS) + ll_deploy_sharedlibs_command(SLPlugin) +endif (LL_TESTS) |