-
Notifications
You must be signed in to change notification settings - Fork 3
Compiling From Source
radj307 edited this page Aug 20, 2022
·
1 revision
Compiling from source is easy, and has been tested on Windows 10 x64 & Debian 11 x64.
Note: This project requires a compiler that is compatible with C++20 features like concepts.
- CMake v3.20 or later
- A compiler compatible with C++20.
- 307lib (This is included as a submodule and does not require you to download it separately)
- Open a terminal in a location of your choice, then clone the repository:
git clone https://github.com/radj307/Gamebryo-Engine-Unit-Converter
- Initialize & update submodules to retrieve the dependencies
git submodule init && git submodule update --recursive
- Build using your preferred method.
See here for CMake CLI documentation.
See here for CMake-GUI documentation.
Contributions are always welcome, if you want to add a new feature or fix a bug feel free to open a pull request!
A Note on Bugfix PRs: Please open an issue on this repository before (or immediately after) submitting a PR so I can keep track of what the PR is fixing.