diff options
author | Nyx (Neal Orman) <nyx@lindenlab.com> | 2012-01-25 19:05:37 -0500 |
---|---|---|
committer | Nyx (Neal Orman) <nyx@lindenlab.com> | 2012-01-25 19:05:37 -0500 |
commit | e67cc17e437141301cedca5ae194a3845d8f265b (patch) | |
tree | ab4925e8d5d5deeda321d5b0947d5ae076e59d85 /indra/cmake | |
parent | 739358779267413887a57d2a6d6b651312245495 (diff) |
PATH-192 WIP adjusting cmake build for physics extensions
Diffstat (limited to 'indra/cmake')
-rw-r--r-- | indra/cmake/LLPhysicsExtensions.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/cmake/LLPhysicsExtensions.cmake b/indra/cmake/LLPhysicsExtensions.cmake index 252be44d30..598ac72849 100644 --- a/indra/cmake/LLPhysicsExtensions.cmake +++ b/indra/cmake/LLPhysicsExtensions.cmake @@ -1,14 +1,14 @@ # -*- cmake -*- include(Prebuilt) -use_prebuilt_binary(llpysicsextensions) +use_prebuilt_binary(llphysicsextensions) set(LLPHYSICS_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/lib/include) set(LLPHYSICS_DEBUG_LIBRARY_PATH ${LIBS_PREBUILT_DIR}/lib/debug) set(LLPHYSICS_RELEASE_LIBRARY_PATH ${LIBS_PREBUILT_DIR}/lib/release) -find_library(LL_PHYSICS_DEBUG_LIB llpathinglib PATHS ${LLPHYSICS_DEBUG_LIBRARY_PATH}) -find_library(LL_PHYSICS_RELEASE_LIB llpathinglib PATHS ${LLPHYSICS_RELEASE_LIBRARY_PATH}) +find_library(LL_PHYSICS_DEBUG_LIB llphysicsextensions PATHS ${LLPHYSICS_DEBUG_LIBRARY_PATH}) +find_library(LL_PHYSICS_RELEASE_LIB llphysicsextensions PATHS ${LLPHYSICS_RELEASE_LIBRARY_PATH}) set(LLPHYSICS_LIBRARIES |