cameo-build/README.md

36 lines
682 B
Markdown
Raw Permalink Normal View History

2022-01-02 15:08:16 +00:00
This project is used to build Cameo using podman / docker.
It could be used to build any OpenRA mod which uses make and package-all.sh.
## Checking out the code
```
2023-06-27 00:29:09 +00:00
git clone https://gitea.burntworld.ca/kienan/cameo-build.git
2022-01-02 15:08:16 +00:00
```
2023-06-27 00:29:09 +00:00
To get the Cameo source code, clone one of the following repos;
2022-01-02 15:08:16 +00:00
2023-06-27 00:29:09 +00:00
* [Cameo (releases)](https://github.com/Zeruel87/Cameo-mod.git)
* [Cameo (dev)](https://github.com/Elpollo315/Cameo-mod.git)
* [Cameo Reloaded](https://github.com/Carloo999/CameoReloaded.git)
2022-01-02 15:08:16 +00:00
## Building container image
```
2023-06-27 00:29:09 +00:00
make container
2022-01-02 15:08:16 +00:00
```
## Building Cameo
2023-06-27 00:29:09 +00:00
To produce builds with complete packages:
2022-01-02 15:08:16 +00:00
```
2023-06-27 00:29:09 +00:00
make build
2022-01-02 15:08:16 +00:00
```
2023-06-27 00:29:09 +00:00
To build the executables only;
2022-01-02 15:08:16 +00:00
```
2023-06-27 00:29:09 +00:00
make build-dev
2022-01-02 15:08:16 +00:00
```