summaryrefslogtreecommitdiff
path: root/indra/cmake/LLPathingLib.cmake
diff options
context:
space:
mode:
authorNyx (Neal Orman) <nyx@lindenlab.com>2012-01-25 18:46:19 -0500
committerNyx (Neal Orman) <nyx@lindenlab.com>2012-01-25 18:46:19 -0500
commit739358779267413887a57d2a6d6b651312245495 (patch)
treea9196a00c7e372b7f38f43f46f2682d4139e9d8c /indra/cmake/LLPathingLib.cmake
parent50b67f052a440fba54a05fe32320f6bb84ea43cc (diff)
PATH-192 WIP adding convex decomp to pathing
First pass at using new llPhysicsExtensions library which combines pathing and convex decomp.
Diffstat (limited to 'indra/cmake/LLPathingLib.cmake')
-rw-r--r--indra/cmake/LLPathingLib.cmake23
1 files changed, 0 insertions, 23 deletions
diff --git a/indra/cmake/LLPathingLib.cmake b/indra/cmake/LLPathingLib.cmake
deleted file mode 100644
index 8e622d83db..0000000000
--- a/indra/cmake/LLPathingLib.cmake
+++ /dev/null
@@ -1,23 +0,0 @@
-# -*- cmake -*-
-include(Prebuilt)
-
-use_prebuilt_binary(llpathinglib)
-set(LLPATHING_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/libraries/include)
-
-
-set(LLPATHING_DEBUG_LIBRARY_PATH ${LIBS_PREBUILT_DIR}/lib/debug)
-set(LLPATHING_RELEASE_LIBRARY_PATH ${LIBS_PREBUILT_DIR}/lib/release)
-
-find_library(LL_PATHING_DEBUG_LIB llpathinglib PATHS ${LLPATHING_DEBUG_LIBRARY_PATH})
-find_library(LL_PATHING_RELEASE_LIB llpathinglib PATHS ${LLPATHING_RELEASE_LIBRARY_PATH})
-
-set(LLPATHING_LIBRARIES
-
- debug ${LL_PATHING_DEBUG_LIB}
- optimized ${LL_PATHING_RELEASE_LIB}
-)
-
-if (LINUX)
- list(INSERT LLPATHING_LIBRARIES 0 -Wl,--start-group)
- list(APPEND LLPATHING_LIBRARIES -Wl,--end-group)
-endif (LINUX)