Skip to content

Instantly share code, notes, and snippets.

View michtesar's full-sized avatar

Michael Tesař michtesar

View GitHub Profile
@lubiluk
lubiluk / ROS_Lunar_macOS_Sierra.txt
Last active February 19, 2021 00:17
A step by step installation of ROS Lunar on macOS Sierra.
# The commands below resulted in successful compilation and installation
# of ROS Lunar on macOS Sierra
# desktop distribution is used instead of desktop_full to avoid installation
# of Gazebo7 and Qt4. Gazebo8 works out of the box when installed from brew.
#
# Note: Commands presented in this file are intended to be executed manually,
# one by one, as opposed to running this file as a script. Some paths used
# here should be adapted to your environment.
# Create a workspace
@hbirchtree
hbirchtree / CMakeLists.txt
Last active December 11, 2021 09:08 — forked from fracek/CMakeLists.txt
CMake, GTK+ 3 and AppImage
# Set the name and the supported language of the project
PROJECT(hello-world C)
# Set the minimum version of cmake required to build this project
CMAKE_MINIMUM_REQUIRED(VERSION 3.0)
### We need this in order to find CMake modules located in this directory
set ( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR} )
include ( LinuxAppImageBuild )