Skip to content
Snippets Groups Projects
Commit 00c85944 authored by Todd Stinson's avatar Todd Stinson
Browse files

PATH-181 and PATH-194: Implementing the building of the viewer with the stub...

PATH-181 and PATH-194: Implementing the building of the viewer with the stub library and validating that it does load/run as expected with the physics extensions disabled.
parent 1c14b084
No related branches found
No related tags found
No related merge requests found
# -*- cmake -*- # -*- cmake -*-
include(Prebuilt) include(Prebuilt)
use_prebuilt_binary(llphysicsextensions)
set(LLPHYSICS_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/lib/include) set(LLPHYSICS_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/lib/include)
if (INSTALL_PROPRIETARY AND NOT STANDALONE) set(LLPHYSICS_DEBUG_LIBRARY_PATH ${LIBS_PREBUILT_DIR}/lib/debug)
use_prebuilt_binary(llphysicsextensions) set(LLPHYSICS_RELEASE_LIBRARY_PATH ${LIBS_PREBUILT_DIR}/lib/release)
set(LLPHYSICS_DEBUG_LIBRARY_PATH ${LIBS_PREBUILT_DIR}/lib/debug) if (INSTALL_PROPRIETARY AND NOT STANDALONE)
set(LLPHYSICS_RELEASE_LIBRARY_PATH ${LIBS_PREBUILT_DIR}/lib/release) set(LL_PHYSICS_LIB_NAME "llphysicsextensions")
else (INSTALL_PROPRIETARY AND NOT STANDALONE)
set(LL_PHYSICS_LIB_NAME "llphysicsextensionsstub")
endif (INSTALL_PROPRIETARY AND NOT STANDALONE)
find_library(LL_PHYSICS_DEBUG_LIB llphysicsextensions PATHS ${LLPHYSICS_DEBUG_LIBRARY_PATH}) find_library(LL_PHYSICS_DEBUG_LIB ${LL_PHYSICS_LIB_NAME} PATHS ${LLPHYSICS_DEBUG_LIBRARY_PATH})
find_library(LL_PHYSICS_RELEASE_LIB llphysicsextensions PATHS ${LLPHYSICS_RELEASE_LIBRARY_PATH}) find_library(LL_PHYSICS_RELEASE_LIB ${LL_PHYSICS_LIB_NAME} PATHS ${LLPHYSICS_RELEASE_LIBRARY_PATH})
set(LLPHYSICS_LIBRARIES set(LLPHYSICS_LIBRARIES
debug ${LL_PHYSICS_DEBUG_LIB} debug ${LL_PHYSICS_DEBUG_LIB}
optimized ${LL_PHYSICS_RELEASE_LIB} optimized ${LL_PHYSICS_RELEASE_LIB}
) )
if (LINUX) if (LINUX)
list(INSERT LLPHYSICS_LIBRARIES 0 -Wl,--start-group) list(INSERT LLPHYSICS_LIBRARIES 0 -Wl,--start-group)
list(APPEND LLPHYSICS_LIBRARIES -Wl,--end-group) list(APPEND LLPHYSICS_LIBRARIES -Wl,--end-group)
endif (LINUX) endif (LINUX)
else (INSTALL_PROPRIETARY AND NOT STANDALONE)
endif (INSTALL_PROPRIETARY AND NOT STANDALONE)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment