This file contains hidden or 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
| # 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 |
This file contains hidden or 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
| # 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 ) |