diff options
author | Dave Parks <davep@lindenlab.com> | 2010-08-26 14:23:12 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-08-26 14:23:12 -0500 |
commit | 71de5f622a7917f78823a7e7840194e1b0f8f070 (patch) | |
tree | 1bfa580e5262ae6a8271ade6aee08f21a019c688 /indra/cmake/LLConvexDecomposition.cmake | |
parent | fc7a3f6daab94331aab52983caee5c68db8cd772 (diff) |
Add missing files from viewer-experimental
Diffstat (limited to 'indra/cmake/LLConvexDecomposition.cmake')
-rw-r--r-- | indra/cmake/LLConvexDecomposition.cmake | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/indra/cmake/LLConvexDecomposition.cmake b/indra/cmake/LLConvexDecomposition.cmake new file mode 100644 index 0000000000..ae9dc3c17a --- /dev/null +++ b/indra/cmake/LLConvexDecomposition.cmake @@ -0,0 +1,16 @@ +# -*- cmake -*- +include(Prebuilt) + +set(LLCONVEXDECOMP_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include) + +if (INSTALL_PROPRIETARY AND NOT STANDALONE) + use_prebuilt_binary(llconvexdecomposition) + if (WINDOWS) + set(LLCONVEXDECOMP_LIBRARY llconvexdecomposition) + else (WINDOWS) + set(LLCONVEXDECOMP_LIBRARY llconvexdecompositionstub) + endif (WINDOWS) +else (INSTALL_PROPRIETARY AND NOT STANDALONE) + use_prebuilt_binary(llconvexdecompositionstub) + set(LLCONVEXDECOMP_LIBRARY llconvexdecompositionstub) +endif (INSTALL_PROPRIETARY AND NOT STANDALONE) |