mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
23 lines
495 B
Markdown
23 lines
495 B
Markdown
# Contributing
|
|
This guide shows how to prepare your environment to contribute for OpenDX.
|
|
|
|
## Dependencies
|
|
First, install these dependencies (older versions might work, but it's not guaranteed).
|
|
|
|
| Dependency | Version |
|
|
|:-|-:|
|
|
|[`cmake`](https://packages.ubuntu.com/kinetic/cmake)|`3.25.1`|
|
|
|[`libgtk-4-dev`](https://packages.ubuntu.com/kinetic/libgtk-4-dev)|`4.10.1`|
|
|
|
|
|
|
## Building and running
|
|
These are the same universal steps for cmake:
|
|
|
|
```sh
|
|
cd build
|
|
cmake ..
|
|
|
|
# run dxdiag
|
|
./dxdiag
|
|
```
|