You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,18 @@
1
+
2
+
> [!WARNING]
3
+
> This repo has not been maintained in a long while. All of the tutorials here are outdated. You're on your own here. Good luck.
4
+
1
5
### CatWare Engine
2
6
CatWare is a game engine developed and used by Cat Code Software to build games.
3
7
4
8
## Building
5
-
##### Note: There is currently an issue with xmake and you can't configure the project. If this is not resolved soon we might consider adding an alternate build system
6
-
CatWare uses xmake to generate projects. Install xmake here https://xmake.io
7
-
To generate a Visual Studio solution open your terminal and run ```xmake project -k vsxmake2022 -m "debug;release"``` or see [this tutorial](https://github.com/CatCodeSoftware/CatWareEngine/blob/main/Docs/Tutorials/0.%20Creating%20a%20project.md) to see how to include the engine in your project.
9
+
CatWare uses cmake to generate projects.
10
+
To generate build files open your terminal and run
11
+
```sh
12
+
mkdir bulid
13
+
cd build
14
+
cmake .. -DCMAKE_BUILD_TYPE=Release
15
+
```
8
16
9
17
## Tutorials
10
18
All tutorials are located in [Docs/Tutorials](https://github.com/CatCodeSoftware/CatWareEngine/tree/main/Docs/Tutorials)
0 commit comments