Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gnrlleclerc/inf443-solar-system-game-simulation
Solar System & asteroid simulation in real time
https://github.com/gnrlleclerc/inf443-solar-system-game-simulation
Last synced: about 8 hours ago
JSON representation
Solar System & asteroid simulation in real time
- Host: GitHub
- URL: https://github.com/gnrlleclerc/inf443-solar-system-game-simulation
- Owner: GnRlLeclerc
- License: mit
- Created: 2023-11-22T09:26:46.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-24T19:01:27.000Z (11 months ago)
- Last Synced: 2024-11-20T14:34:40.120Z (about 2 months ago)
- Language: C++
- Size: 48.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Projet INF443
## Getting started
### On Windows
Execute the `windows_cmake_visual.bat` script located in the `scripts/` folder. It will create a `build/` folder with a file ending in **.sln** in it.
Double click this file to open the project in **Visual Studio**.### On Linux
Execute the following commands :
```
mkdir build
cd build
cmake ..
make
```## Adding / removing files from the project
**Do not forget to run the `cmake ..` command in the `build/` directory each time a c++ file is added or removed from the project ! This ensures that each files get compiled in a corresponding .o output file during compilation, avoiding the need to recompile unchanged files each time another one is changed**
## Test the project
The executable is named **project** (set in _CMakeLists.txt_).