2022-12-20 15:13:07 +00:00
|
|
|
# CeeV
|
|
|
|
|
|
|
|
A simple visual novel engine written in C++.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
### Building
|
|
|
|
|
|
|
|
CeeV uses CMake to build. To build, run the following commands:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
|
|
|
make
|
|
|
|
```
|
|
|
|
|
2022-12-20 21:16:21 +00:00
|
|
|
### Initializing a project
|
2022-12-20 15:13:07 +00:00
|
|
|
|
2022-12-20 21:16:21 +00:00
|
|
|
Make a new folder, then run the following command:
|
2022-12-20 15:13:07 +00:00
|
|
|
|
|
|
|
```bash
|
2022-12-20 21:16:21 +00:00
|
|
|
./ceev init
|
2022-12-20 15:13:07 +00:00
|
|
|
```
|
|
|
|
|
2022-12-20 21:16:21 +00:00
|
|
|
### Building the project
|
2022-12-20 15:13:07 +00:00
|
|
|
|
2022-12-20 21:16:21 +00:00
|
|
|
Run the following command:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./ceev build
|
|
|
|
```
|
|
|
|
|
|
|
|
### Running the project
|
|
|
|
|
|
|
|
Run the following command:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./ceev run
|
|
|
|
```
|
|
|
|
|
|
|
|
### More help
|
|
|
|
|
|
|
|
Run the following command:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./ceev --help
|
|
|
|
```
|
|
|
|
if you need more help.
|
2022-12-20 15:13:07 +00:00
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
CeeV is licensed under the AGPL-3.0 License. See [LICENSE](LICENSE) for more information.
|
|
|
|
|
|
|
|
## Contributing
|
|
|
|
|
|
|
|
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
|