This repository has been archived on 2022-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
space-war/ReadMe.md

39 lines
799 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# SpaceSector
为1MGames游戏开发大赛制作的游戏。
## 编译方法
使用CMake 3.20及以上进行编译。目前只能在Mac平台下编译因为我用的glad是Mac专属你也可以将你平台的glad替换`libs/glad`文件夹来编译glad指定OpenGL3.3 Core版本
```bash
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build
```
如果想要压缩文件至1M以下你需要有`strip`程序和`upx`程序,并执行:
```bash
cmake --build build --target CompressExe
```
编译好后执行pack程序打包
```bash
pack.sh
```
最终的结果在`output`文件夹下。
## 游戏截图
![welcome](./snapshot/welcome.png)
![select](./snapshot/select_ship.png)
![gaming](./snapshot/gaming.png)
## 游戏操作
[游戏操作](./HowToPlay.md)