c08e1d9e6e
This change introduces two new USD API schema: * MjcEqualityAPI - base API for representing MuJoCo equality constraints in USD, this will typically be applied to joints such as UsdPhysicsFixedJoint. * MjcEqualityWeldAPI - extends MjcEqualityAPI for MuJoCo's weld equality constraints with an attribute for torqueScale. The usd_decoder is updated to parse UsdPhysicsFixedJoints and convert the new schema attributes into the appropriate mjsEquality data fields. PiperOrigin-RevId: 856723634 Change-Id: I0982fd3168b643f8e91d87bb5ae5933e526b63a1
51 lines
1.6 KiB
CMake
51 lines
1.6 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.
|
|
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
|
set(USD_DECODER_SRCS
|
|
usd_decoder.cc
|
|
kinematic_tree.cc
|
|
kinematic_tree.h
|
|
material_parsing.cc
|
|
material_parsing.h
|
|
)
|
|
|
|
add_library(usd_decoder_plugin SHARED ${USD_DECODER_SRCS})
|
|
target_include_directories(usd_decoder_plugin PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../..
|
|
)
|
|
target_link_libraries(usd_decoder_plugin PRIVATE
|
|
mujoco
|
|
mjcPhysics
|
|
)
|
|
target_compile_options(usd_decoder_plugin PRIVATE
|
|
${AVX_COMPILE_OPTIONS}
|
|
${MUJOCO_MACOS_COMPILE_OPTIONS}
|
|
${EXTRA_COMPILE_OPTIONS}
|
|
${MUJOCO_CXX_FLAGS}
|
|
-Wno-deprecated # pxr Tf lib uses deprecated header
|
|
)
|
|
target_link_options(usd_decoder_plugin PRIVATE
|
|
${MUJOCO_MACOS_LINK_OPTIONS}
|
|
${EXTRA_LINK_OPTIONS}
|
|
)
|
|
|
|
# Install to mujoco_plugin directory in bin location so that it is picked up by simulate
|
|
# on startup.
|
|
install(
|
|
TARGETS usd_decoder_plugin
|
|
LIBRARY DESTINATION "${CMAKE_INSTALL_BINDIR}/mujoco_plugin"
|
|
)
|
|
|
|
target_link_libraries(usd_decoder_plugin PRIVATE usd usdGeom usdPhysics usdShade gf tf ar vt kind)
|