Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rigsofrods/ror-dependencies
CMake Meta-Project to build dependencies of Rigs of Rods
https://github.com/rigsofrods/ror-dependencies
Last synced: about 2 months ago
JSON representation
CMake Meta-Project to build dependencies of Rigs of Rods
- Host: GitHub
- URL: https://github.com/rigsofrods/ror-dependencies
- Owner: RigsOfRods
- Created: 2015-03-24T17:25:43.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-05-21T07:58:12.000Z (8 months ago)
- Last Synced: 2024-05-21T09:09:40.075Z (8 months ago)
- Language: C
- Homepage:
- Size: 1.45 MB
- Stars: 4
- Watchers: 8
- Forks: 11
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ror-dependencies
Dependencies that will be needed to compile the source.## How to build on Windows
### Prerequisites
* Install Windows Visual Studio 2017 Community Edition
* Install [cmake](https://cmake.org/download/)
* Install [git](https://git-scm.com/download)Install with [Chocolatey](https://chocolatey.org/): ```choco install cmake git```
### Create Visual Studio solution file
* Launch cmake-gui and point the source directory to the _ror-dependencies_ repository
* Set the build directory to any folder where the resulting dependencies should be placed
* Press _Configure_ and select `Visual Studio 15 2017` as generator (Notice: Win64 target not supported yet)
* Press _Generate_ to create the solution file
### Build dependencies* Open the `ror-dependencies.sln` file inside the chosen build directory with Visual Studio
* Select `Release` configuration (currently the only tested configuration)
* Run Build->Build Solution (`Ctrl-Shift-B`)
* This will populate the `Dependencies_Windows_Visual-Studio-15-2017` directory with the freshly built dependencies## How to build on Linux
### Prerequisites
* Install cmake, git
### Configure && buildcmake
make
The resulting dependencies will be placed inside the `Dependencies_Linux` directory.