https://github.com/lionleaf/ev
Evolution simulator project
https://github.com/lionleaf/ev
Last synced: over 1 year ago
JSON representation
Evolution simulator project
- Host: GitHub
- URL: https://github.com/lionleaf/ev
- Owner: lionleaf
- Created: 2019-02-19T16:01:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-19T02:41:50.000Z (almost 7 years ago)
- Last Synced: 2025-02-15T09:35:52.764Z (over 1 year ago)
- Language: C++
- Size: 2.09 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Requirements
========
You need cmake 3.13+
Maybe some opengl requirements (worked out of the box for me)
Mac
-------
`brew install cmake`
Build
========
With `make`
---------
```
mkdir build
cd build
cmake ..
make
```
On subsequent builds you only need to run `make` from the `build` folder. No need to rerun cmake.
Visual Studio 2017
-------------
```
mkdir build-vs
cd build-vs
cmake -G "Visual Studio 15" ..
```
Note that if you run from windows it might be enough to just do `cmake ..`
Open the generated visual studio project file :)
Xcode
----------
```
mkdir build-xcode
cd build-xcode
cmake -G Xcode ..
```
And you have an xcode project you can open :)