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.
2022-02-03 22:37:41 +08:00
|
|
|
|
# SpaceSector
|
|
|
|
|
|
|
|
|
|
为1MGames游戏开发大赛制作的游戏。
|
|
|
|
|
|
2022-02-04 14:07:03 +08:00
|
|
|
|
## 编译方法
|
|
|
|
|
|
|
|
|
|
使用CMake 3.20及以上进行编译。
|
|
|
|
|
|
|
|
|
|
```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`文件夹下。
|