Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chinmaygarde/radar
Experiments in User Interfaces and Composition
https://github.com/chinmaygarde/radar
Last synced: 20 days ago
JSON representation
Experiments in User Interfaces and Composition
- Host: GitHub
- URL: https://github.com/chinmaygarde/radar
- Owner: chinmaygarde
- License: mit
- Created: 2015-07-21T23:21:58.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-03-20T20:45:59.000Z (8 months ago)
- Last Synced: 2024-10-08T05:50:02.779Z (about 1 month ago)
- Language: C++
- Homepage:
- Size: 34.5 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Radar
=====Prerequisites
-------------
#### Mac
* Xcode 7.2 or newer.
* CMake
* `brew install cmake`#### Linux
* A C++ 11 compiler: `GCC 4.9` or above **or** `Clang 3.6` or newer.
* CMake, SDL 2, OpenGLES 2.
* `apt-get install -y cmake libgles2-mesa-dev libsdl2-dev ninja-build`.
* There is also a preconfigured `Vagrantfile` in source root if that is your style.
* `vagrant up linux; vagrant ssh linux; cd /vagrant;`.
* Limitation: In the Vagrant environment, you wont be able to run the desktop application, only build the tools, run tests, etc..Build Instructions
------------------#### Building on Mac OSX
* Create a directory called `build` in the source root and move into it.
* `mkdir build; cd build;`
* Generate the `Xcode` project for all targets.
* `cmake ../ -G Xcode; cd ../`
* Open `build/Radar.xcodeproj` and run the scheme you want.#### Building on Linux
* Create a directory and move into it.
* `mkdir build; cd build;`
* Generate either the `Makefile` or `Ninja` project via `CMake`
* For a `Makefile` project: `cmake ../`
* For a `Ninja` project: `cmake ../ -G Ninja`
* Build. You can also selectively build a particular target by specifying its name after the command.
* `make -j`
* `ninja`Linters & Formatters
--------------------All tools are run from the source root and require `rake`
#### Formatters
* Make sure `clang-format` is installed.
* `rake format`#### Linters
* Make sure `cpplint` is installed.
* `rake lint`