This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# nvidia-xconfig: X configuration file generated by nvidia-xconfig | |
# nvidia-xconfig: version 390.116 (buildmeister@swio-display-x64-rhel04-14) Sun Jan 27 07:47:55 PST 2019 | |
Section "DRI" | |
Mode 0666 | |
EndSection | |
#Section "ServerLayout" | |
# Identifier "Layout0" | |
# Screen 0 "Screen0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link name="my_link"> | |
<inertial> | |
<origin xyz="0 0 0.5" rpy="0 0 0"/> | |
<mass value="1"/> | |
<inertia ixx="100" ixy="0" ixz="0" iyy="100" iyz="0" izz="100" /> | |
</inertial> | |
<visual> | |
<origin xyz="0 0 0" rpy="0 0 0" /> | |
<geometry> | |
<box size="1 1 1" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.16.3) | |
project(configure-file-example) | |
# Configure file, export the environment variable. | |
set(FOO_DIR | |
"${CMAKE_CURRENT_SOURCE_DIR}/${PATH_YOU_WANT}") | |
configure_file(config/foo.h.in foo.h @ONLY) | |
# Libraries or excutables | |
# ... |
OlderNewer