ef78f07ffb
*** Reason for rollback *** Rolling back obj/stl decoder inclusion as sources due to broken windows build. *** Original change description *** Include obj and stl decoder plugins as sources in CMake builds. This removes the need to load these decoders via mj_loadAllPluginLibraries when using MuJoCo built with CMake. Other plugins are unchanged. *** PiperOrigin-RevId: 885576586 Change-Id: I31e6fa4d10697862f7d800d0d771ca752747e36d
55 lines
1.4 KiB
CMake
55 lines
1.4 KiB
CMake
# Copyright 2026 DeepMind Technologies Limited
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
if(EMSCRIPTEN)
|
|
add_library(stl_decoder OBJECT stl_decoder.cc)
|
|
else()
|
|
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
|
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_LIBDIR}")
|
|
|
|
add_library(stl_decoder SHARED stl_decoder.cc)
|
|
endif()
|
|
|
|
target_include_directories(stl_decoder PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../..
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../../include
|
|
)
|
|
|
|
if(EMSCRIPTEN)
|
|
target_link_libraries(stl_decoder PRIVATE)
|
|
else()
|
|
target_link_libraries(stl_decoder PRIVATE
|
|
mujoco
|
|
)
|
|
endif()
|
|
|
|
target_compile_options(stl_decoder PRIVATE
|
|
${AVX_COMPILE_OPTIONS}
|
|
${MUJOCO_MACOS_COMPILE_OPTIONS}
|
|
${EXTRA_COMPILE_OPTIONS}
|
|
${MUJOCO_CXX_FLAGS}
|
|
)
|
|
|
|
if(NOT EMSCRIPTEN)
|
|
target_link_options(stl_decoder PRIVATE
|
|
${MUJOCO_MACOS_LINK_OPTIONS}
|
|
${EXTRA_LINK_OPTIONS}
|
|
)
|
|
|
|
install(
|
|
TARGETS stl_decoder
|
|
LIBRARY DESTINATION "${CMAKE_INSTALL_BINDIR}/mujoco_plugin"
|
|
)
|
|
endif()
|